{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}

Global email MFA disable

{% if global_disable %}
Email MFA is currently DISABLED for all users.
Reason: {{ global_disable.reason }}
Disabled by: {{ global_disable.disabled_by }}
Disabled at: {{ global_disable.disabled_at }}
{% if global_disable.expires_in_seconds %}Auto re-enables in ~{{ global_disable.expires_in_seconds }} seconds.{% endif %}
{% else %}

Email MFA is currently enabled for all users.

{% csrf_token %}

Why email MFA is being disabled. Required and stored for audit.

Auto re-enables after this. Maximum 7 days.

{% endif %}

Bypassed emails ({{ bypass_emails|length }})

{% for email in bypass_emails %} {% endfor %}
Email Actions
{{ email }}

No emails are currently bypassed.

{% csrf_token %}

Add email

Email address to bypass email MFA verification

{% endblock %}