I would like to know how could I extend Django admin in order to be able to navigate the records using aggregated data.

For example: browse data aggregated by date, month, day, day of the week and see average, max/min or total for other fields.

link|improve this question

64% accept rate
feedback

1 Answer

You can extend the admin templates to add some charts / reports above the normal changelist, changeform, etc (using model methods or something else).

Also, checkout databrowse. I've not used it, but it might provide an easier way to add aggregation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.