1 {% extends "2022/base_simple.html" %}
5 {% block titleextra %}{% trans "Disable notifications" %}{% endblock %}
8 <h1>{% trans "Disable notifications" %}</h1>
9 <div class="white-box normal-text">
10 {% if view.object.notifications %}
12 {% blocktrans with e=view.object.email %}Are you sure you want to disable notifications for address {{e}}?{% endblocktrans %}
14 <form method="post" action="">
15 <button>{% trans "Disable notifications" %}</button>
19 {% blocktrans with e=view.object.email %}Notifications for address {{e}} have been successfully disabled.{% endblocktrans %}
23 {% url 'funding_current' as current %}
25 {% blocktrans with current=current %}Return to the <a href="{{current}}">current fundraiser</a>.{% endblocktrans %}