I'm having a bit of a problem finding a solution to this. I'd like to be able to output some data that I have filtered by datetime, but so that it displays a separate div for each set of objects with a particular date. Is this possible? I couldn't find what would let me do this in the django docs.
1 Answer
You want to regroup the sequence based on the date.
1 Comment
Raunak Agarwal
Wow, never knew Django had this..Awesome!