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

Dashboard



System Users
{% if let Some(err) = error %} {{ err }}
{% endif %} {% if current_user.role == "admin" %} {% endif %} {% for user in users %} {% if current_user.role == "admin" %} {% endif %} {% endfor %}
ID Username RoleActions
{{ user.id }} {{ user.username }} {{ user.role }} {% if user.id != current_user.id %}
{% endif %}
{% if current_user.role == "admin" %}
System Administration - Add New User
Username:
Password:
Role:

{% endif %} {% endblock %}