{% extends "base.html" %} {% load i18n %} {% block title %}{% translate "Confirmation: delete your profile" %}{% endblock %} {% block content %} {% if form.errors %}
{% 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 %}{% 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 %}
{% endif %} {% endblock %}