{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard



System Users
{% if let Some(err) = error %} {{ err }}
{% endif %} {% for user in users %}

ID: {{ user.id }}
Username: {{ user.username }}
Role: {{ user.role }}
{% if current_user.role == "admin" %} {% if user.id != current_user.id %}

{% endif %}
{% endif %}


{% endfor %} {% if current_user.role == "admin" %}
System Administration - Add New User
Username:
Password:
Role:

{% endif %} {% endblock %}