I have a list of people, each person having a birthdate, which is predictably stored in a DateField. I\'m trying to create a list of those people—sorted by the
DateField
Post.objects.all().order_by('date_posted__minute').reverse() where date_posted is your attribute you used in your Post model.
Post is just an example model