Guest User

Untitled

a guest
Oct 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. # view.py
  2. def get_posts():
  3. posts = Post.objects.all()
  4. return render(request, 'post.html' {'posts' : posts})
  5.  
  6. #template
  7. {{ posts|length }}
Add Comment
Please, Sign In to add comment