6baa9a4fcc643f4a4caa00c94ddc46e76c622c6f
[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>Plan płatności</h1>
11
12 <div>{{ schedule.email }}</div>
13 <div>{{ schedule.amount }}</div>
14 <div>{{ schedule.plan.get_interval_display }}</div>
15
16 <div>{{ schedule.is_active|yesno:"Aktywne,Nieaktywne" }}</div>
17
18 <div>Start: {{ schedule.started_at }}</div>
19 <div>Opłacone do: {{ schedule.expires_at|default:"brak" }} {% if schedule.is_cancelled %}(anulowana){% endif %}</div>
20
21 {% if schedule.expires_at and not schedule.is_cancelled %}
22 <form method='post' action="{% url 'club_cancel' schedule.key %}">
23         {% csrf_token %}
24         <button type="submit">Anuluj płatność</button>
25 </form>
26 {% endif %}
27
28 {% if schedule.is_expired %}
29   Płatność wygasła. <a href="{% url 'club_join' %}">Wykonaj nową płatność</a>.
30 {% endif %}
31
32 {% if schedule.membership %}
33   <p>
34   Członek/członkini Towarzystwa nr {{ schedule.membership.id }} ({{ schedule.membership.user }}).
35   </p>
36 {% else %}
37 <p>
38 Płatność nie przypisana do członkostwa.<br>
39 <a href="{% url 'club_claim' schedule.key %}">Przypisz</a>
40 </p>
41 {% endif %}
42
43
44
45
46         
47 <a href="">
48
49 </div>
50
51 {% endblock %}