Add /reviews/ to list all reviews

This commit is contained in:
rubenwardy
2020-07-10 20:30:31 +01:00
parent 13130a217c
commit c7a7609763
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block title %}
{{ _("Reviews") }}
{% endblock %}
{% block content %}
{% from "macros/reviews.html" import render_reviews %}
{{ render_reviews(reviews, current_user, True) }}
{% endblock %}