{% extends "base.html" %} {% block title %}Admin Dashboard - Anguis{% endblock %} {% block content %}

Admin Dashboard

System administration and user management

Total Users

{{ stats.total_users }}

Active Users

{{ stats.active_users }}

Admin Users

{{ stats.admin_users }}

External Users

{{ stats.external_users }}

User Management

Create, edit, and manage user accounts

Manage Users
Configuration

View and edit system settings

View Config
Authentication

Configure authentication methods

Auth Settings
System Status

Monitor system health and statistics

View Status
{% if stats.recent_logins %}
Recent Logins
{% for user in stats.recent_logins[:10] %} {% endfor %}
Username Display Name Auth Backend Last Login Status
{{ user.username }} {{ user.display_name }} {{ user.auth_backend }} {% if user.last_login %} {{ user.last_login[:19] }} {% else %} Never {% endif %} {% if user.is_admin %} Admin {% endif %}
{% endif %}
{% endblock %}