contentdb/app/templates/packages/reviews_list.html

15 lines
416 B
HTML
Raw Normal View History

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 %}