{% 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 scripts %} {{ super() }} {% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}

Users

{% for user in users %} {% endfor %}
ID Email Roles Latest Network Actions
{{ user.id }} {{ user.email }} {{ user.roles|join(', ') }} {% for report in user.reports.limit(1) %} {% if report.network is not none %} {{ report.network }} {% endif %} {% endfor %} {% if user.is_admin %} Remove Admin {% else %} Add Admin {% endif %} Remove
{% include "footer.html" %} {% endblock %}