92a755a8bd01ee31ac3efc6d100ef9d78c44e85b
[wolnelektury.git] / src / paypal / templates / paypal / form.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load chunks %}
4 {% load static from static %}
5
6 {% block title %}{% trans "Wolne Lektury Friend Club" %}{% endblock %}
7
8 {% block body %}
9   <div class="mobile-margins">
10   <h1>{% trans "Wolne Lektury Friend Club" %}</h1>
11   <p>Poniżej możesz ustawić comiesięczną płatność <strong>(co najmniej 5 zł)</strong>, aby dołączyć do Przyjaciół Wolnych Lektur.</p>
12   {# https://www.facebook.com/sharer/sharer.php?u=https%3A//wolnelektury.pl{% url 'paypal_form' %} #}
13   {% if user.is_authenticated %}
14     <form method="post">
15       {% csrf_token %}
16       {{ form.amount.label_tag }}{{ form.amount }}
17       {# paypal submit button #}
18       <input type="image" src="{% static 'img/btn_subscribe_LG_pl.gif' %}" alt="{% trans "Subscribe with PayPal" %}" style="margin-left: 2em; vertical-align: bottom;">
19     </form>
20   {% else %}
21     {% trans "You must be logged in to subscribe." %}
22   {% endif %}
23   {% chunk "klub_info" %}
24   </div>
25 {% endblock %}