{% extends "base.html" %} {% load tz %} {% block title %}Invoice {{ invoice.invoice_number }} — {{ event.name }} — Jason Studio{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if is_photographer_view %} Back to Order {% else %} Back to Selections {% endif %}
{% if order %} {% if order.is_paid %}
PAID
{% else %}
UNPAID
{% endif %} {% endif %}

{% if photographer %}{{ photographer.business_name|default:"Jason Studio" }}{% else %}Jason Studio{% endif %}

Photography Services

{% if photographer.address %}

{{ photographer.address }}

{% endif %} {% if photographer.phone %}

{{ photographer.phone }}

{% endif %} {% if photographer.email %}

{{ photographer.email }}

{% endif %}

Invoice

{% if order %}

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

Bill To:
{{ customer.user.get_full_name|default:customer.user.username }}
{% if customer.user.email %}{{ customer.user.email }}
{% endif %} {% if customer.phone %}{{ customer.phone }}{% endif %}
Event:
{{ event.name }}
{{ event.date }}
{% for item in line_items %} {% endfor %} {% if invoice.deposit and invoice.deposit != 0 %} {% endif %} {% if invoice.tax_rate and invoice.tax_rate != 0 %} {% 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 }}
{% if invoice.notes %}

{{ invoice.notes }}

{% endif %} {% if photographer.payment_instructions %}
Payment Instructions:

{{ photographer.payment_instructions }}

{% endif %} {% if photographer.invoice_notes %}
Terms & Conditions:

{{ photographer.invoice_notes }}

{% endif %}
{% endblock %}