1 {% extends "base/base.html" %}
4 {% block titleextra %}Towarzystwo Wolnych Lektur{% endblock %}
8 <div class="white-box normal-text">
10 <h1>Plan płatności</h1>
12 <div>{{ schedule.email }}</div>
13 <div>{{ schedule.amount }}</div>
14 <div>{{ schedule.plan.get_interval_display }}</div>
16 <div>{{ schedule.is_active|yesno:"Aktywne,Nieaktywne" }}</div>
18 <div>Start: {{ schedule.started_at }}</div>
19 <div>Opłacone do: {{ schedule.expires_at|default:"brak" }} {% if schedule.is_cancelled %}(anulowana){% endif %}</div>
21 {% if schedule.expires_at and not schedule.is_cancelled %}
22 <form method='post' action="{% url 'club_cancel' schedule.key %}">
24 <button type="submit">Anuluj płatność</button>
28 {% if schedule.is_expired %}
29 Płatność wygasła. <a href="{% url 'club_join' %}">Wykonaj nową płatność</a>.
32 {% if schedule.membership %}
34 Członek/członkini Towarzystwa nr {{ schedule.membership.id }} ({{ schedule.membership.user }}).
38 Płatność nie przypisana do członkostwa.<br>
39 <a href="{% url 'club_claim' schedule.key %}">Przypisz</a>