{% extends "base.html" %} {% import '_macros.html' as macros %} {% block title %}{{ _("Users") }} | {{ super() }}{% endblock %} {% block content %}
{{ user.email }}
{{ user.name }}
{% for perm in user.permissions %} {{ perm.graph.name }} ({{ perm.level_as_string }}) {% if not loop.last -%}, {% endif %} {% endfor %}