Files
v1.xevion.dev/app/templates/dashboard/dashboard.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 %}