We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
period
1 parent 7e38039 commit 4c36e76Copy full SHA for 4c36e76
README.rst
@@ -119,7 +119,7 @@ Now, let's store some one-off statistics:
119
StatisticByDate.objects.record(
120
metric=Metric.objects.SHOPPING_ORDER_COUNT,
121
value=n,
122
- Period=Period.LIFETIME)
+ period=Period.LIFETIME)
123
124
# Users signed up, at a specific date
125
dt = date.today()
@@ -130,7 +130,7 @@ Now, let's store some one-off statistics:
130
131
metric=Metric.objects.USERS_USER_COUNT,
132
133
- Period=Period.DAY)
+ period=Period.DAY)
134
135
Creating code to store statistics yourself can be a tedious job.
136
Luckily, a few shortcuts are available to track statistics without
0 commit comments