aboutsummaryrefslogtreecommitdiff
path: root/app/templates/base.html
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-05-23 18:42:59 +0100
committerrubenwardy <rw@rubenwardy.com>2018-05-23 18:42:59 +0100
commitda33b106123ec7595008869398718df3d549bb9d (patch)
treea22d988058072a6d54f8170c0d11a53f2294561b /app/templates/base.html
parent5c1320042975016ea0b2ad122f1d1712bd16dacd (diff)
downloadcheatdb-da33b106123ec7595008869398718df3d549bb9d.tar.xz
Reduce access restrictions on user list
Diffstat (limited to 'app/templates/base.html')
-rw-r--r--app/templates/base.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/templates/base.html b/app/templates/base.html
index f2ece29..07fe1fb 100644
--- a/app/templates/base.html
+++ b/app/templates/base.html
@@ -59,6 +59,7 @@
</li>
{% if current_user.canAccessTodoList() %}
<li><a href="{{ url_for('todo_page') }}">Work Queue</a></li>
+ <li><a href="{{ url_for('user_list_page') }}">User list</a></li>
{% endif %}
{% if current_user.rank == current_user.rank.ADMIN %}
<li><a href="{{ url_for('admin_page') }}">Admin</a></li>