How can I tell the Django ORM to reverse the order of query results?

create list and

def messages_to_list(messages):
    result = []
    for message in messages:
        result.append(message_to_list(message))
    result.reverse()
    return result

def message_to_list(message):
    return {
    'member': str(message.member),  
    'message': str(message.message),
    'pub_date': str(message.pub_date.strftime(" %B %d,%Y, %A %I:%M%p ")),
    'admin': message.admin
    }

The result above will be ordered by pub_date descending, then by headline ascending.

Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')

If we had a Python sequence and looked at seq [-5:], we would see the fifth (last) element first. Django does not support this access mode (slicing from the end), because it cannot be done efficiently in SQL. (((((((((((((((((((((((((((((


Put a hyphen before the field name.

.order_by('-date')

Tags:

Python

Django