{% extends "base.html" %} {% load tz %} {% block title %}Invoice {{ invoice.invoice_number }} — {{ event.name }} — Jason Studio{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Photography Services
{% if photographer.address %}{{ photographer.address }}
{% endif %} {% if photographer.phone %}{{ photographer.phone }}
{% endif %} {% if photographer.email %}{{ photographer.email }}
{% endif %}Invoice #: {{ invoice.invoice_number }}
Order #: {{ order.ref }}
{% endif %}Date Issued: {% if invoice.issued_at %}{{ invoice.issued_at|date:"N j, Y" }}{% else %}{% now "N j, Y" %}{% endif %}
{% if photographer.payment_terms %}Terms: {{ photographer.payment_terms }}
{% endif %}| # | Description | File | Qty | Unit Cost | Price |
|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ item.description }} | {{ item.filename }} | {{ item.qty }} | ${{ item.unit_cost|floatformat:2 }} | ${{ item.price|floatformat:2 }} |
| Subtotal | ${{ invoice.subtotal|floatformat:2 }} | ||||
| Deposit | -${{ invoice.deposit|floatformat:2 }} | ||||
| Tax ({{ invoice.tax_rate|floatformat:2 }}%) | ${{ invoice.tax_amount|floatformat:2 }} | ||||
| Amount Due | ${{ invoice.amount_due|floatformat:2 }} | ||||
{{ invoice.notes }}
{{ photographer.payment_instructions }}
{{ photographer.invoice_notes }}