Easier schedule cancelling.
authorRadek Czajka <rczajka@rczajka.pl>
Fri, 13 May 2022 12:36:34 +0000 (14:36 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Fri, 13 May 2022 12:36:34 +0000 (14:36 +0200)
src/club/templates/club/schedule.html
src/club/templates/payu/rec_payment.html

index 9505cdd..422d323 100644 (file)
       </button>
     </form>
 
+    {% if schedule.get_payment_method.cancellable %}
+      <br>
+      <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 %}
+
 
  {% else %}
   {% if not schedule.payed_at %}
index 4c840a6..3f8fa58 100644 (file)
     <h1>{% trans "Supporting Wolne Lektury" %}</h1>
 
     <p>
-      {% blocktrans with amount=schedule.amount %}
-        You are setting up a monthly payment in the amount of {{ amount }} PLN. Thank you!
-      {% endblocktrans %}
+      {% if schedule.payed_at %}
+        Aktualizujesz dane swojej comiesięcznej darowizny w kwocie {{ amount }} PLN. Dziękujemy!</p><p>
+        Jeśli chcesz zrezygnować z dalszego wsparcia Wolnych Lektur, możesz to zrobić na <a href="{{ schedule.get_absolute_url }}">stronie swojej darowizny</a>.
+      {% else %}
+        {% blocktrans with amount=schedule.amount %}
+          You are setting up a monthly payment in the amount of {{ amount }} PLN. Thank you!
+        {% endblocktrans %}
+      {% endif %}
     </p>
 
     <form id="theform" method='POST'>