{% extends "emails/body_base.txt" %}
{% load i18n %}
{% block content %}
{% blocktrans trimmed with full_name=request.user.get_full_name %}
    {{ full_name }},
{% endblocktrans %}

{% blocktrans trimmed with host=request.get_host %}
  The authentication factor {{ authenticator }} of your account on {{ host }} has been enabled.
{% endblocktrans %}

{% blocktrans trimmed %}
  ⚠️ If you did not ask for this change, please refer to your administrator.
{% endblocktrans %}
{% endblock %}