diff options
| author | rubenwardy <rw@rubenwardy.com> | 2020-07-10 20:30:31 +0100 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2020-07-10 20:31:29 +0100 |
| commit | c7a7609763496ddaa3bd5f570da3703addf67ee4 (patch) | |
| tree | 67c2a3bd1ab102a1c189746e96bf6467e3c50a68 /app/templates/packages | |
| parent | 13130a217c416293a075ab73e3107ac15761c0e5 (diff) | |
| download | cheatdb-c7a7609763496ddaa3bd5f570da3703addf67ee4.tar.xz | |
Add /reviews/ to list all reviews
Diffstat (limited to 'app/templates/packages')
| -rw-r--r-- | app/templates/packages/reviews_list.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/templates/packages/reviews_list.html b/app/templates/packages/reviews_list.html new file mode 100644 index 0000000..e0a84b5 --- /dev/null +++ b/app/templates/packages/reviews_list.html @@ -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 %} |
