-<div>{{ schedule.email }}</div>
-<div>{{ schedule.amount }}</div>
-<div>{{ schedule.plan.get_interval_display }}</div>
-
-<div>{{ schedule.is_active|yesno:"Aktywne,Nieaktywne" }}</div>
+<div>E-mail: {{ schedule.email }}</div>
+<div>Składka: {{ schedule.amount }} zł {{ schedule.plan.get_interval_display }}</div>
+<div>Wybrana metoda płatności: {{ schedule.get_payment_method.name }}</div>
+
+{% if schedule.is_active %}
+ {% if schedule.plan.is_perpetual %}
+ Opłacona na zawsze.
+ {% endif %}
+ Aktualnie opłacona do: {{ schedule.expires_at }}
+
+ {% if schedule.get_payment_method.is_recurring %}
+ <form method='post' action="{% url 'club_cancel' schedule.key %}">
+ {% csrf_token %}
+ <button type="submit">Anuluj kolejną płatność</button>
+ </form>
+ {% else %}
+ <form method='post' action=''>
+ {% csrf_token %}
+ <button type="submit">Opłać kolejny okres</button>
+ </form>
+ {% endif %}