reobject
reobject copied to clipboard
Support reverse ordering in values and values_list
This is supported:
Foo.objects.filter().order_by('-foo')
whereas, this is not:
Foo.objects.filter().values('email', 'foo').order_by('-foo')