aboutsummaryrefslogtreecommitdiff
path: root/app/templates/base.html
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-05-27 17:11:02 +0100
committerrubenwardy <rw@rubenwardy.com>2018-05-27 17:12:44 +0100
commit19848a154d10d27758ff37e41040e202c9dd2a42 (patch)
tree9ff567e38eae1037f55baf85ef91718a75619e2c /app/templates/base.html
parent6ce2eb71334ba4a203319a0bdf326e2823a636bd (diff)
downloadcheatdb-19848a154d10d27758ff37e41040e202c9dd2a42.tar.xz
Add tag editor
Diffstat (limited to 'app/templates/base.html')
-rw-r--r--app/templates/base.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/templates/base.html b/app/templates/base.html
index dc31624..7b9f361 100644
--- a/app/templates/base.html
+++ b/app/templates/base.html
@@ -63,6 +63,9 @@
{% if current_user.rank == current_user.rank.ADMIN %}
<li><a href="{{ url_for('admin_page') }}">Admin</a></li>
{% endif %}
+ {% if current_user.rank == current_user.rank.MODERATOR %}
+ <li><a href="{{ url_for('tag_list_page') }}">Tag Editor</a></li>
+ {% endif %}
<li><a href="{{ url_for('user.logout') }}">Sign out</a></li>
</ul>
</li>