{% extends "base.html" %} {% load crispy_forms_tags i18n translations %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %}

{% translate "Account removal" %}

{{ confirm_form|crispy }}
  • {% translate "Account removal deletes all your private data." %}
  • {% if user.owned_projects %}
  • {% translate "You will lose access to the projects you manage. Projects themselves will not be removed." %}
      {% for project in user.owned_projects %}
    • {{ project }}
    • {% endfor %}
  • {% endif %} {% if has_billing %}
  • {% translate "Any billing you might have created will not be terminated by this account removal." %}
  • {% endif %} {% if is_confirmation %}
  • {% blocktranslate %}By pressing the following button, you will no longer be able to use this account.{% endblocktranslate %}
  • {% else %}
  • {% blocktranslate %}You will have to confirm the account removal by clicking the link in the e-mail you will receive.{% endblocktranslate %}
  • {% endif %}
{% csrf_token %}
{% endblock content %}