From 34ddab19455eae24036aa7b24114d64f28b770d8 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Thu, 22 Sep 2016 11:07:36 +1000 Subject: [PATCH] Adds stripe refunds template --- .../templates/registrasion/stripe/refund.html | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pinaxcon/templates/registrasion/stripe/refund.html diff --git a/pinaxcon/templates/registrasion/stripe/refund.html b/pinaxcon/templates/registrasion/stripe/refund.html new file mode 100644 index 0000000..383ba2a --- /dev/null +++ b/pinaxcon/templates/registrasion/stripe/refund.html @@ -0,0 +1,22 @@ +{% extends "site_base.html" %} +{% load bootstrap %} +{% load registrasion_tags %} + +{% block body %} + +

Stripe refunds for credit note #{{ credit_note.id}}

+ +

This credit note is valued at ${{ credit_note.value }}.

+ +

Available refunds

+ +

Currently credit notes can only be cashed out in full in a single + transaction. If you need to cash out to multiple small payments, you will + need to manually invoke the refunds from the Stripe Dashboard.

+ +
+ {% csrf_token %} + {{form|bootstrap}} + +
+{% endblock %}