1ed6a9b042611b4fb873617fc46e8dd9e5dc5daa
[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 "Disable notifications" %}{% endblock %}
6
7 {% block body %}
8   <h1>{% trans "Disable notifications" %}</h1>
9   <div class="white-box normal-text">
10     {% if view.object.notifications %}
11       <p>
12         {% blocktrans with e=view.object.email %}Are you sure you want to disable notifications for address {{e}}?{% endblocktrans %}
13       </p>
14       <form method="post" action="">
15         <button>{% trans "Disable notifications" %}</button>
16       </form>
17     {% else %}
18       <p>
19         {% blocktrans with e=view.object.email %}Notifications for address {{e}} have been successfully disabled.{% endblocktrans %}
20       </p>
21     {% endif %}
22
23     {% url 'funding_current' as current %}
24     <p>
25       {% blocktrans with current=current %}Return to the <a href="{{current}}">current fundraiser</a>.{% endblocktrans %}
26     </p>
27   </div>
28 {% endblock %}