示例#1
0
def index(page=0):
	entries, last_page, page_count = paginator(coll, page, request, session, model='Blog')
	return render_template('list.html', entries=entries, last_page=last_page)
示例#2
0
def index(page=0):
	entries, last_page, page_count = paginator(coll_library_book, 
												page, request, session, model='Book')
	return render_template('library.html', entries=entries, last_page=last_page)