{% extends "base.html" %} {% block title %}Users – Location Management{% endblock %} {% block content %}

Users

Add User
{% for u in users %} {% endfor %}
UsernameRoleActive
{{ u.username }} {% if u.id == current_user.id %} you {% endif %} {{ u.role }} {% if u.is_active %} {% else %} {% endif %} {% if u.id != current_user.id %}
{% endif %}
{% endblock %}