diff --git a/pinaxcon/templates/registrasion/credit_note.html b/pinaxcon/templates/registrasion/credit_note.html new file mode 100644 index 0000000000000000000000000000000000000000..5b9061547f15424ca0ac71f6526d3dd3d1d49660 --- /dev/null +++ b/pinaxcon/templates/registrasion/credit_note.html @@ -0,0 +1,40 @@ +{% 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.

+ + {{ apply_form|bootstrap }} +
+ +
+

Manual refund

+

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

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