Guest User

Untitled

a guest
Feb 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. users = User.query(Post.name != "John")
  2. user_cursor = memcache.get('user_cursor')
  3. if user_cursor:
  4. users.with_cursor(start_cursor=user_cursor)
  5. self.render('templates/front.html', users = users)
  6.  
  7. {% for row in users | batch(3) %}
  8. <div class="row">
  9. {% for u in row %}
  10. <p> {{u.firstname}}</p>
  11. {% endfor %}
  12. </div>
  13. {% endfor %}
Add Comment
Please, Sign In to add comment