{%extends "base.html"%} {%from "oauth2/profile_nav.html" import profile_nav%} {%block title%}View User{%endblock%} {%block content%}
{{profile_nav("roles")}}

Roles

{{flash_me()}}
    {%for role in roles %}
  • {{role.role_name}}
  • {%else%}
  •   No roles attached to this user
  • {%endfor%}
{%endblock%}