Locatizations.
[wolnelektury.git] / src / funding / templates / funding / disable_notifications.html
1 {% extends "base_simple.html" %}
2 {% load i18n %}
3 {% load fnp_share %}
4
5 {% block titleextra %}{% trans "Wyłącz powiadomienia" %}{% endblock %}
6
7 {% block body %}
8   <h1>{% trans "Wyłącz powiadomienia" %}</h1>
9   <div class="white-box normal-text">
10     {% if view.object.notifications %}
11       <p>
12         {% blocktrans with e=view.object.email %}Czy na pewno chcesz wyłączyć powiadomienia dla adresu {{e}}?{% endblocktrans %}
13       </p>
14       <form method="post" action="">
15         <button>{% trans "Wyłącz powiadomienia" %}</button>
16       </form>
17     {% else %}
18       <p>
19         {% blocktrans with e=view.object.email %}Powiadomienia dla adresu {{ e }} zostały wyłączone.{% endblocktrans %}
20       </p>
21     {% endif %}
22
23     {% url 'funding_current' as current %}
24     <p>
25       {% blocktrans with current=current %}Wróć do <a href="{{ current }}">aktualnej zbiórki</a>.{% endblocktrans %}
26     </p>
27   </div>
28 {% endblock %}