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

    {% trans "Account removal" %}

    {{ confirm_form|crispy }}

    {% trans "Account removal deletes all your private data." %}

    {% if is_confirmation %}

    {% blocktrans %}By pressing following button, your will no longer be able to use this account.{% endblocktrans %}

    {% else %}

    {% blocktrans %}You will have to confirm account removal by clicking link in e-mail you will receive.{% endblocktrans %}

    {% endif %} {% csrf_token %}
    {% endblock %}