{% extends "admin/layout.html" %} {% block title %}Profile - Admin{% endblock %} {% block body %}

{% trans %}Profile{% endtrans %}

{% trans %}Manage your account settings and security{% endtrans %}

{% set _pic = (sub_admin_profile.profile_picture if sub_admin_profile else (admin_profile.profile_picture if admin_profile)) or '' %}

{% trans %}Profile Picture{% endtrans %}

{% if _pic %} Profile Picture {% else %} {% endif %}

{% trans %}Recommended: Square image, max 2MB{% endtrans %}

{% trans %}Profile Information{% endtrans %}

{% set _desc = (sub_admin_profile.profile_description if sub_admin_profile else (admin_profile.profile_description if admin_profile)) or '' %}

{{ _desc|length }}{% trans %}/500 characters{% endtrans %}

{% trans %}Change Password{% endtrans %}

{% trans %}Two-Factor Authentication{% endtrans %}

{% set _2fa_enabled = (sub_admin_profile.totp_enabled if sub_admin_profile else (admin_profile and admin_profile.totp_enabled)) %}
{% trans %}Status:{% endtrans %} {% if _2fa_enabled %} {% trans %}Enabled{% endtrans %} {% else %} {% trans %}Disabled{% endtrans %} {% endif %}
{% if _2fa_enabled %}

{% trans %}Two-factor authentication is currently active. To disable it, enter your password below.{% endtrans %}

{% if not sub_admin_profile %} {% endif %}
{% else %}

{% trans %}Add an extra layer of security to your account by enabling two-factor authentication.{% endtrans %}

{% endif %}
{% endblock %} {% block page_scripts %} {% endblock %}