I am using the following to import the database entries and it works fine by listing contents from first entry to the last on the database:
users_temp = users.objects.all() --> where users is a table in my database.
How do I change the above line so that I get a list of last item on the table first and so on?
Thanks,