2020-07-10 21:30:31 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ _("Reviews") }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-08-18 23:09:41 +02:00
|
|
|
{% from "macros/pagination.html" import render_pagination with context %}
|
|
|
|
{% from "macros/reviews.html" import render_reviews with context %}
|
2020-12-04 00:41:11 +01:00
|
|
|
|
2020-12-22 13:22:52 +01:00
|
|
|
{{ render_pagination(pagination, url_set_query) }}
|
|
|
|
{{ render_reviews(reviews, current_user, True) }}
|
2020-12-04 00:41:11 +01:00
|
|
|
{{ render_pagination(pagination, url_set_query) }}
|
2020-07-10 21:30:31 +02:00
|
|
|
{% endblock %}
|