Hello,
I am trying to retrieve the latest 5 posts (by post time)
In the views.py, if I try blog_post_list = blogPosts.objects.all()[:5]
It retreives the first 5 elements of the blogPosts objects, how can I reverse this to retreive the latest ones?
Cheers