ca62ad4fb283f28f61a133a6e2ee0575ca52ce82
[wolnelektury.git] / src / funding / templates / funding / no_thanks.html
1 {% extends request.EXPERIMENTS.layout.value|yesno:"2022/base_simple.html,base/base.html" %}
2 {% load i18n %}
3 {% load fnp_share %}
4
5 {% block titleextra %}{% trans "Payment failed" %}{% endblock %}
6
7 {% block body %}
8   <h1>{% trans "Payment failed" %}</h1>
9   <div class="white-box normal-text">
10     <p>{% trans "You're support has not been processed successfully." %}</p>
11     {% url 'funding_current' as current %}
12     <p>
13       {% blocktrans with current=current %}Return to the <a href="{{current}}">current fundraiser</a> and try again or try to use a different payment method.{% endblocktrans %}
14     </p>
15   </div>
16 {% endblock %}