swath of changes to remove hidden "id" implementation in favor of hidden "role" RBAC implement

This commit is contained in:
Xevion
2019-12-23 21:48:11 -06:00
parent 99c702c306
commit c1aa3b2272
6 changed files with 24 additions and 37 deletions

View File

@@ -1,5 +1,10 @@
{% extends '/dashboard/dashboard_base.html' %}
{% set dashboard_home_active = True %}
{% block dashboard_body %}
<section></section>
<section>
<h1>Roles</h1>
{% for role in current_user.get_roles() %}
<b>{{ role }}</b><br>
{% endfor %}
</section>
{% endblock dashboard_body %}