mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-11 01:53:47 +01:00
21 lines
569 B
HTML
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 %}
|