fix: add logout button to admin pages

This commit is contained in:
2026-03-10 10:39:10 -06:00
parent 4f0a7df22a
commit 94d6690e57
3 changed files with 14 additions and 1 deletions
+1
View File
@@ -15,6 +15,7 @@
{% if current_role == 'superadmin' %}
<a href="{{ url_for('admin_users') }}" class="btn btn-outline-secondary btn-sm">Manage Users</a>
{% endif %}
<a href="{{ url_for('admin_logout') }}" class="btn btn-outline-danger btn-sm">Logout</a>
</div>
</div>