aboutsummaryrefslogtreecommitdiff
path: root/app/templates/base.html
diff options
context:
space:
mode:
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>