I wanted to sort DateTimeField
just by date, ignoring the time.
Because in my ordering I need
Person.objects.order_by('-date_joined', 'full_name')
But sorting by name has no effect because the field has time, but I just wanted the date.