{% extends 'base.html' %} {% block body %} {% if not user.mfa_enabled and user.compute_groups() != user.compute_groups(ignore_mfa=True) %} {% endif %}
{{_("Manage two-factor authentication")}}
{{_("We will send you a confirmation mail to set a new mail address.")}}
{{_("At least 8 and at most 256 characters, no other special requirements. But please don't be stupid, do use a password manager.")}}
{% if user.roles|length %} {% if user.roles|length == 1 %} {{_("You have this role")}}: {% else %} {{_("You currently have these roles")}}: {% endif %}
    {% for role in user.roles|sort(attribute="name") %}
  • {{ role.name }}
  • {% endfor %}
{% else %} {{_("You currently don't have any roles.")}} {% endif %}
{% endblock %}