remove now unused {% load url from future %}
[mygpo.git] / mygpo / web / templates / delete_account.html
blob5359d4c0384b4cf3bef41468d779226ac95a1c53
1 {% extends "base.html" %}
2 {% load i18n %}
4 {% load menu %}
5 {% block mainmenu %}{{ "/account/"|main_menu }}{% endblock %}
6 {% block sectionmenu %}{{ "/account/"|section_menu }}{% endblock %}
8 {% block title %}
9 {% trans "Delete Account" %}
10 {% endblock %}
13 {% block header %}
14 <h1>{% trans "Delete your Account?" %}</h1>
15 {% endblock %}
18 {% block content %}
20 <p>{% trans "Do you really want to delete your account?" %}</p>
21 <form method="post" action="{% url "delete-account" %}">
22 {% csrf_token %}
23 <input type="submit" value="{% trans "Yes, please" %}" />
24 </form>
26 {% endblock %}