mirror of
https://github.com/Xevion/v1.xevion.dev.git
synced 2025-12-09 08:09:32 -06:00
10 lines
272 B
HTML
10 lines
272 B
HTML
{% extends '/dashboard/dashboard_base.html' %}
|
|
{% set dashboard_home_active = True %}
|
|
{% block dashboard_body %}
|
|
<section>
|
|
<h1>Roles</h1>
|
|
{% for role in current_user.get_roles() %}
|
|
<b>{{ role }}</b><br>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock dashboard_body %} |