Add tag editor

This commit is contained in:
rubenwardy
2018-05-27 17:11:02 +01:00
parent 6ce2eb7133
commit 19848a154d
6 changed files with 105 additions and 1 deletions

View File

@@ -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>