{% load i18n %}{% blocktrans %}Hi {{ user }},{% endblocktrans %}

{% blocktrans %}Your account is inactive and is pending deletion.{% endblocktrans %}

{% if user.oidcauthorization_set.exists %}
{% blocktranslate count counter=user.oidcauthorization_set.count %}
Your account is currently linked to a third-party service:
{% plural %}
Your account is currently linked to {{ counter }} third-party services:
{% endblocktranslate %}
{% for authz in user.oidcauthorization_set.all %}
{% blocktranslate with name=authz.client.name created=authz.created %}· Link with {{ name }} created on {{ created }}{% endblocktranslate %}
{% endfor %}
{% endif %}

{% blocktrans %}In order to keep your account, you must log in within {{ days_to_deletion }} days.{% endblocktrans %}
{% trans "Past this delay, it will be deleted." %}
