diff --git a/pinaxcon/templates/registrasion/stripe/credit_card_payment.html b/pinaxcon/templates/registrasion/stripe/credit_card_payment.html deleted file mode 100644 index 0fb3f42901375ba7c22d1ae8b842d665d0e0c59d..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/stripe/credit_card_payment.html +++ /dev/null @@ -1,88 +0,0 @@ -{% extends "site_base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} - - -{% block scripts %} - {{ block.super }} - - {{ form.media }} - - - -{% endblock %} - -{% block body %} - -

Credit card payment for invoice #{{ invoice.id}}

- -

You have ${{ invoice.balance_due }} remaining to pay on this invoice.

- -

Credit card payments are processed by Stripe. - We do not store any of your credit card data locally, but instead Strip will securely tokenise your card details. To allow this, you must allow JavaScript from js.stripe.com.

- -

Card details

- -
- - - - {% csrf_token %} - {{form|bootstrap}} - -
-{% endblock %} diff --git a/pinaxcon/templates/registrasion/stripe/refund.html b/pinaxcon/templates/registrasion/stripe/refund.html deleted file mode 100644 index 383ba2af914935a3bd4e2ac04e10a0d1d1a4e51a..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/stripe/refund.html +++ /dev/null @@ -1,22 +0,0 @@ -{% 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 %}