contentdb/app/templates/packages/reviews_list.html

15 lines
416 B
HTML
Raw Normal View History

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