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

User Management

Create New User
{% if users.items %} {% for user in users.items %} {% endfor %}
Username Full Name Email Role Status Actions
{{ user.username }} {{ user.full_name }} {{ user.email }} {% if user.is_admin %}Admin{% else %}User{% endif %} {% if user.is_active %}Active{% else %}Inactive{% endif %}
Edit {% if user.id != current_user.id %}
{% endif %}

Showing {{ users.start_idx }} to {{ users.end_idx }} of {{ users.total }} users

{% else %}

No users found.

Create First User
{% endif %} {% endblock %}