I have a Django model with a created timestamp and I'd like to get the counts of objects created on each day. I was hoping to use the aggregation functionality in Django but I can't figure out how to solve my problem with it. Assuming that doesn't work I can always fall back to just getting all of the dates with values_list but I'd prefer to give the work to Django or the DB. How would you do it?
| |||
feedback
|
|
Alex pointed to the right answer in the comment: Count number of records by date in Django
I learn new tricks every day reading stack.. awesome! | |||
|
feedback
|
|
Use the count method:
| |||
|
feedback
|