From c8e63f4d6b0c11faf459713059e13c7c4cc1f4b7 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Sun, 4 Jun 2017 13:34:33 -0700 Subject: [PATCH] credit_note.html is moved into registrasion --- .../templates/registrasion/credit_note.html | 57 ------------------- 1 file changed, 57 deletions(-) delete mode 100644 pinaxcon/templates/registrasion/credit_note.html diff --git a/pinaxcon/templates/registrasion/credit_note.html b/pinaxcon/templates/registrasion/credit_note.html deleted file mode 100644 index 86c1b65..0000000 --- a/pinaxcon/templates/registrasion/credit_note.html +++ /dev/null @@ -1,57 +0,0 @@ -{% extends "site_base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} -{% block body %} - -

Credit Note

- -{% with note_user=credit_note.invoice.user %} - -{% endwith %} - -

This credit note was generated from funds excess from invoice {{ credit_note.invoice.id }}.

- -{% if credit_note.is_unclaimed %} -
- {% csrf_token %} -

Apply to invoice

-

You can apply this credit note to an unpaid invoice.

- -

This credit note belongs to: {{ credit_note.invoice.user.email }} ({{ credit_note.invoice.user.id}}). You can apply this credit note to any user's invoice.

- - {{ apply_form|bootstrap }} -
- -
-

Generate cancellation fee

-

You can generate an invoice for a cancellation fee, resulting in an invoice - and a new credit note. -

- - {{ cancellation_fee_form|bootstrap }} -
- -
- -

Stripe Refund

- -

View Stripe refund options

- -

Manual refund

-

You can mark this credit note as refunded, and handle the refund manually. -

- - {{ refund_form|bootstrap }} -
- -
-
-{% endif %} - -{% endblock %}