{% extends 'paxalia/base.html' %} {% load i18n static %} {% block title %}{% trans "Security Overview" %} — Paxalia{% endblock %} {% block page_title %}{% trans "Security Overview" %}{% endblock %} {% block page_subtitle %}{% trans "Effective security controls, administrator protection, and configuration health" %}{% endblock %} {% block extra_css %} {% endblock %} {% block dashboard_content %}
{% trans "Paxalia Security" %}

{% trans "Security Overview" %}

{% trans "This page reports what is actually configured or observable. It does not change your project's security settings." %}

{% trans "Pass" %}{{ security_health.summary.PASS|default:0 }}
{% trans "Warning" %}{{ security_health.summary.WARNING|default:0 }}
{% trans "Danger" %}{{ security_health.summary.DANGER|default:0 }}
{% trans "Disabled" %}{{ security_health.summary.DISABLED|default:0 }}
{% trans "Not configured" %}{{ security_health.summary.NOT_CONFIGURED|default:0 }}
{% trans "Not applicable" %}{{ security_health.summary.NOT_APPLICABLE|default:0 }}
{% trans "Controls" %}

{% trans "Security Controls" %}

{% blocktrans with total=security_health.total %}{{ total }} checks evaluated{% endblocktrans %}
{% for check in security_health.checks %}
{{ check.label }} {{ check.status }}
{% trans "Current state" %}
{{ check.current }}
{% trans "Expected state" %}
{{ check.expected }}
{% trans "Why it matters" %}
{{ check.why }}
{% trans "Configuration source" %}
{{ check.source }}
{% trans "Recommended action" %}
{{ check.action }}
{% if check.href %}{% trans "Open" %}{% endif %}
{% endfor %}
{% trans "Administrator access" %} {% trans "Three-layer protection is required before Paxalia Admin access." %}

{% trans "Your final session is tied to your Django account, confirmed second factor, and active authorized WebAuthn credential." %}

{% trans "Active devices" %} {{ admin_device_count }} {% trans "Recovery codes" %} {{ recovery_codes_remaining }} {% trans "2FA" %} {% if totp_enabled %}{% trans "Enabled" %}{% else %}{% trans "Required" %}{% endif %}
{% endblock %}