Guest User

Untitled

a guest
Jun 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Index(generic.ListView):
  2.  
  3. template_name = 'home/index.html'
  4. context_object_name = 'posts_list'
  5.  
  6. def get_queryset(self):
  7. return Post.objects.order_by('-pub_date')
Add Comment
Please, Sign In to add comment