{% extends "base.html" %} {% block title %}Users — TaskFlow{% endblock %} {% block content %}
{% for u in users %} {% endfor %}
Username Full name Email Role Status Joined
{{ u.username }} {% if u.id == user.id %} (you) {% endif %} {{ u.full_name or '—' }} {{ u.email }} {{ u.role.value | title }} {% if u.is_active %}Active{% else %}Inactive{% endif %} {{ u.created_at.strftime('%d %b %Y') }}
Edit {% if u.id != user.id %}
{% endif %}
{% endblock %}