summaryrefslogtreecommitdiff
path: root/djangoproject/templates/accounts/delete_profile_success.html
blob: 096280203fdb46c1a6182d0c2cd563c50d2d51e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}
{% load i18n %}

{% block content %}
    <h2>{% translate "Account deleted" %}</h2>
    <p>
        {% translate "Your account and its data were successfully deleted, and you've been logged out." %}
    </p>
    <p>
        {% url "community-index" as community_index_url %}
        {% blocktranslate trimmed %}
            Thanks for spending your time with us, we hope we'll still see you
            around on our <a href="{{ community_index_url }}">various community spaces</a>, online and off.
        {% endblocktranslate %}
    </p>
{% endblock content %}