contentdb/app/templates/packages/reviews_list.html
2023-08-26 13:08:11 +01:00

21 lines
569 B
HTML

{% extends "base.html" %}
{% block title %}
{{ _("Reviews") }}
{% endblock %}
{% block scriptextra %}
{% if current_user.is_authenticated %}
<script src="/static/js/quick_review_voting.js"></script>
{% endif %}
{% 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 %}