{% extends "admin/base.html" %} {% load i18n %} {# Keep Unfold's native dashboard, then append our stats #} {% block content %} {{ block.super }}

{% trans "Authentication Mode" %}

{% trans "Mode" %}: {{ dashboard_status.auth_mode|default:"hybrid" }}

{% trans "OIDC Status" %}

{% if dashboard_status.oidc_configured %}

{% trans "Configured" %}

{% else %}

{% trans "Unconfigured" %}

{% endif %}

{% trans "Users" %}

{{ dashboard_status.user_count }}

{% trans "Superuser present" %}: {% if dashboard_status.has_superuser %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}

{% endblock %}