{% extends "base.html" %} {% block title %} {{ _("Reviews") }} {% endblock %} {% block content %} {% from "macros/pagination.html" import render_pagination with context %} {% from "macros/reviews.html" import render_reviews with context %} {{ render_pagination(pagination, url_set_query) }} {{ render_reviews(reviews, current_user, True) }} {{ render_pagination(pagination, url_set_query) }} {% endblock %}