{% extends "base.html" %} {% load i18n %} {% block title %}{% translate "Confirmation: delete your profile" %}{% endblock %} {% block content %} {% if form.errors %}

{% translate "Could not delete account" %}

{% blocktranslate trimmed %} Sorry, something went wrong when trying to delete your account. That means there's probably some protected data still associated with your account. Please contact the operations team, and we'll sort it out for you. {% endblocktranslate %}

{% else %}

{% translate "Are you sure?" %}

{% blocktranslate trimmed with username=request.user.username %} ⚠️ You are about to delete all data associated with the username {{ username }}. {% endblocktranslate %}

{% blocktranslate trimmed %} Deleting your account is permanent and cannot be reversed. Are you sure you want to continue? {% endblocktranslate %}

{% csrf_token %}
{% translate "No, cancel and go back" %}
{% endif %} {% endblock %}