6222527380885ca25051cfda014eb14e6114baff
[wolnelektury.git] / src / club / templates / club / donation_step3.html
1 {% extends 'club/donation_step_base.html' %}
2 {% load i18n %}
3 {% load static %}
4 {% load club %}
5
6
7 {% block donation-jumbo-image %}{% static '2022/images/checkout-img-4.jpg' %}{% endblock %}
8
9
10 {% block donation-step-content %}
11   <div class="l-checkout__cols q-reload-is-monthly {% if schedule.monthly %}is-monthly{% endif %}">
12     <div class="l-checkout__col">
13       <div class="l-checkout__payments__box is-active">
14         <h3>
15           {{ schedule.amount|floatformat }} zł
16           {% if schedule.monthly %}
17             <span>{% trans "/mies." context "kwota na miesiąc" %}</span>
18           {% endif %}</h3>
19           <img src="{% static '2022/images/checkout-img-3.jpg' %}" alt="">
20       </div>
21     </div>
22     <div class="l-checkout__col">
23       {% include "club/donation_infobox.html" %}
24
25       {% if schedule.monthly %}
26       <h3>Comiesięczna darowizna będzie pobierana automatycznie</h3>
27       <p>Możesz z niej zrezygnować w dowolnej chwili, korzystając z linku który dostaniesz mailem.</p>
28       {% endif %}
29
30       <div class="l-checkout__form">
31         <div class="l-checkout__form__row full">
32
33
34       <div class="iframe">
35             
36             {% for method in schedule.get_payment_methods %}
37               {% invite_payment method schedule %}
38             {% endfor %}
39           </div>
40         </div>
41         <div class="l-checkout__form__row full">
42           <h3>{% trans "Możesz też ustawić stały przelew na konto:" %}</h3>
43           {% include "club/transfer_info.html" %}
44         </div>
45         <div class="l-checkout__form__row confirm">
46           <a href="{% url 'donation_step2' schedule.key %}">{% trans "Powrót" %}</a>
47         </div>
48       </div>
49     </div>
50   </div>
51   <div class="l-checkout__secure">
52     <img src="{% static '2022/images/payments-padlock.png' %}" class="l-checkout__secure__padlock">
53     {% trans "Bezpieczne płatności zapewniają" %}:
54     <img src="{% static '2022/images/payments-payu.png' %}" class="l-checkout__secure__img" alt="PayU Visa MasterCard">
55     {% if club.paypal_enabled %}
56       <img src="{% static '2022/images/payments-paypal.png' %}" class="l-checkout__secure__img" alt="PayPal">
57     {% endif %}
58   </div>
59 {% endblock %}