{% extends "base.html" %} {% block title %}Manage Users - DosVault{% endblock %} {% block content %}
Create and manage user accounts
| 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 %}
|