{% extends "base.html" %} {% block title %}Manage Users - DosVault{% endblock %} {% block content %}

Manage Users

Create and manage user accounts

{% for user in users %} {% endfor %}
User Role Status Created Actions

{{ user.username }}

{{ user.email }}

{{ user.role.upper() }} {% if user.is_active %}ACTIVE{% else %}INACTIVE{% endif %} {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else 'N/A' }}
{% if user.id != current_user.id %} {% endif %}
{% if total_pages > 1 %}
{% endif %} {% endblock %}