-<h1>
-Cieszymy się, że jesteś z nami! Dziękujemy za wsparcie!
-</h1>
-<p>
-Od <strong>{{ schedule.started_at.date }}</strong>
-{% if schedule.expires_at %}
- do <strong>{{ schedule.expires_at.date }}</strong>
-{% endif %}
-wspierasz nas kwotą {{ schedule.amount }} zł{% if schedule.monthly %} miesięcznie{% endif %}{% if schedule.yearly %} rocznie{% endif %}.
-</p>
+ <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 %}
+
+