def reviews(page = 1):
per_page = 3
comments = Comment.query.join(User).add_columns(
User.username,
Comment.text,
Comment.created_date
).paginate(page,per_page,False)
return render_template('reviews.html', comments = comments, date_format = date_format)
评论列表
文章目录