{% 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 }}

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 }}

Manual refund

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

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