+ <h1>
+ Cieszymy się, że jesteś z nami! Dziękujemy za wsparcie!
+ </h1>
+ <div class="white-box normal-text">
+ <p>
+
+
+ {% if schedule.payed_at %}
+ Kwota:
+ {{ schedule.amount }} zł
+
+ <br>
+
+ Pierwsza wpłata:
+ {{ schedule.payed_at.date }}
+
+ <br>
+
+ {% if schedule.is_expired %}
+ <strong style="color: red">
+ Status darczyńcy nieaktywny od
+ {{ schedule.expires_at.date }}
+ </strong>
+ {% else %}
+ <strong style="color: green">
+ Status darczyńcy aktywny
+ {% if schedule.get_payment_method.expiration_reliable %}
+ do
+ {{ schedule.expires_at.date }}
+ {% endif %}
+ </strong>
+ {% endif %}
+
+ <br>
+
+ {% endif %}
+
+
+
+{% if schedule.is_active %}
+ {% if schedule.is_recurring %}
+ {% if schedule.is_cancelled %}
+ <p><strong>Płatność anulowana.</strong></p>
+ <p>
+ <a style="background:#018189;color:white;border-radius: 10px;padding:1em 2em" href="/pomagam/">Wpłać ponownie</a>
+ </p>
+ {% else %}
+ {% if schedule.get_payment_method.updateable %}
+ <form method='post' action='' class="wlform">
+ {% csrf_token %}
+ <button type="submit" class="submit">
+ Zaktualizuj dane płatności
+ </button>
+ </form>
+ <br>
+ {% endif %}
+
+ {% if schedule.get_payment_method.cancellable %}
+ <form class="wlform" method='post' action="{% url 'club_cancel' schedule.key %}">
+ {% csrf_token %}
+ <button type="submit" class="submit" style="font-size: .9em">Zrezygnuj z kolejnych płatności</button>
+ </form>
+ {% endif %}
+ {% endif %}
+ {% else %}
+ <form class="wlform" method='post' action=''>
+ {% csrf_token %}
+ <button type="submit" class="submit">Dorzuć się ponownie</button>
+ </form>
+ {% endif %}