{% extends "base.html" %} {% block title %}User Management - Inspection Reporting{% endblock %} {% block content %}
| Username | Full Name | 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
No users found.
Create First User