{% extends "base.html" %} {% block title %}User Management - aiosyslogd{% endblock %} {% block content %}

User Management

Add User
{% for user in users %} {% endfor %}
Username Admin Enabled Actions
{{ user.username }} {{ "Yes" if user.is_admin else "No" }} {{ "Yes" if user.is_enabled else "No" }} Edit {% if user.username != current_user.username %}
{% endif %}
{% endblock %}