0
I wanted to order DateTimeField
by date only, ignoring the time.
Because in my ordination I need to
Person.objects.order_by('-date_joined', 'full_name')
But sorting by name has no effect because the field has time, but I only wanted the date.
has already been answered here http://stackoverflow.com/a/38151686/802542 Thank you.
– Regis Santos