Wording change.
[wolnelektury.git] / src / club / templates / club / schedule.html
1 {% extends "base/base.html" %}
2
3
4 {% block titleextra %}Towarzystwo Wolnych Lektur{% endblock %}
5
6
7 {% block body %}
8 <div class="white-box normal-text">
9
10 <h1>
11 Cieszymy się, że jesteś z nami! Dziękujemy za wsparcie!
12 </h1>
13 <p>
14 Od <strong>{{ schedule.started_at.date }}</strong>
15 {% if schedule.expires_at %}
16   do <strong>{{ schedule.expires_at.date }}</strong>
17 {% endif %}
18 wspierasz nas kwotą {{ schedule.amount }} zł{% if schedule.monthly %} miesięcznie{% endif %}{% if schedule.yearly %} rocznie{% endif %}.
19 </p>
20
21 {% if schedule.is_active %}
22   {% if schedule.is_recurring %}
23      {% if schedule.is_cancelled %}
24          <p><strong>Płatność anulowana.</strong></p>
25          <p>
26            <a style="background:#018189;color:white;border-radius: 10px;padding:1em 2em" href="/towarzystwo/dolacz/">Wpłać ponownie</a>
27          </p>
28      {% else %}
29        <form class="wlform" method='post' action="{% url 'club_cancel' schedule.key %}">
30         {% csrf_token %}
31         <button type="submit" class="submit" style="font-size: .9em">Anuluj kolejną płatność</button>
32        </form>
33      {% endif %}
34   {% else %}
35      <form class="wlform" method='post' action=''>
36         {% csrf_token %}
37         <button type="submit" class="submit">Dorzuć się ponownie</button>
38      </form>
39   {% endif %}
40
41
42 {% else %}
43  {% if schedule.is_expired %}
44    Członkostwo wygasło.
45    <form method='post' action='' class="wlform">
46         {% csrf_token %}
47         <button type="submit" class="submit">Dorzuć się ponownie</button>
48    </form>
49
50
51  {% else %}
52   {% if not schedule.payed_at %}
53    <p>Płatność nie została jeszcze wykonana.</p>
54    {% if schedule.payuorder_set.exists %}
55      Czekamy na potwierdzenie płatności.
56    {% else %}
57
58      <form method='post' action=''>
59         {% csrf_token %}
60         <button type="submit" class="submit">Dorzuć się</button>
61      </form>
62
63    {% endif %}
64   {% endif %}
65  {% endif %}
66 {% endif %}
67
68
69 <hr style="margin: 2em 0;">
70
71
72 <h2>Towarzystwo Przyjaciół Wolnych Lektur</h2>
73
74
75 {% if schedule.membership %}
76   <p>
77   Należysz już do Towarzystwa Przyjaciół Wolnych Lektur!</p>
78 {% else %}
79
80 <p>
81 Twoje wsparcie upoważnia Cię do członkostwa w Towarzystwie Przyjaciół Wolnych Lektur.
82 Aby w pełni z niego korzystać, zapisz się do Towarzystwa swoim kontem użytkownika na Wolnych Lekturach.
83 </p>
84
85
86 <p>
87 <a style="background:#018189;color:white;border-radius: 10px;padding:1em 2em;" href="{% url 'club_claim' schedule.key %}">Zapisz się</a>
88 </p>
89 {% endif %}
90
91
92
93
94         
95 <a href="">
96
97 </div>
98
99 {% endblock %}