{% extends "base.html" %} {% from "_partials/empty_state.html" import empty_state %} {% block title %}Users — {{ library_name() }}{% endblock %} {% block content %}
| Username | Role | Status | |
|---|---|---|---|
| {{ u.username }} | {{ u.email or "—" }} | {{ u.role.name }} | {% if u.is_active %}Active{% else %}Inactive{% endif %} |