{% extends "base.html" %} {% block title %}Record Payment — {{ invoice.invoice_number }} — Jason Studio{% endblock %} {% block content %}

Record Payment

{{ event.name }} — {{ customer.user.get_full_name|default:customer.user.username }}

Back to Quotes & Orders
Invoice {{ invoice.invoice_number }}

Order: {{ order.ref }}

Invoice Date: {{ invoice.date|date:"N j, Y" }}

Subtotal: ${{ invoice.subtotal|floatformat:2 }}

{% if invoice.deposit and invoice.deposit != 0 %}

Deposit: -${{ invoice.deposit|floatformat:2 }}

{% endif %} {% if invoice.tax_amount and invoice.tax_amount != 0 %}

Tax: ${{ invoice.tax_amount|floatformat:2 }}

{% endif %}

Amount Due: ${{ invoice.amount_due|floatformat:2 }}

{% if error %}
{{ error }}
{% endif %}
Payment Details
{% csrf_token %}
$
{% endblock %}