Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. def paginate(object_list,request,per_page = 10):
  2.     p = Paginator(object_list,per_page)
  3.     return p
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement