{% extends "base.html" %} {% block content %}
@{{ user.username }}
| User ID | {{ user.id }} |
|---|---|
| Username | {{ user.username }} |
| Full Name | {{ user.full_name }} |
| {{ user.email }} | |
| Role | {{ user.role }} |
| Department | {{ user.department or '-' }} |
| Status | {% if user.is_active %}Active{% else %}Inactive{% endif %} |