{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}Users{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}

Users

{% for user in users %} {% endfor %}
Email Roles
{{ user.id }} {{ user.email }}
    {% for role in user.roles %}
  • {{ role }}
  • {% endfor %}
{% include "footer.html" %} {% endblock %}