Locatizations.
[wolnelektury.git] / src / messaging / templates / messaging / contact_form.html
1 {% extends "base_simple.html" %}
2 {% load i18n %}
3
4 {% block body %}
5
6   <h1>{% trans "Rezygnacja z e-maili" %}</h1>
7
8   <p>
9     {% blocktrans trimmed with email=object.email %}
10       Czy na pewno chcesz zrezygnować z otrzymywania e-maili na adres {{ email }}?
11     {% endblocktrans %}
12   </p>
13
14   <form method="POST" action="">
15     {% csrf_token %}
16     <button type="submit">{% trans "Tak, wypisz mnie" %}</button>
17   </form>
18
19 {% endblock %}