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