{% extends "base.html" %} {% block title %}Order {{ order.ref }} — Jason Studio{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Back to Quotes & Orders
{% if order.is_paid %} PAID {% else %} UNPAID {% endif %} {% if order.status == 'delivered' %} DELIVERED {% 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 %}

Order

Order #: {{ order.ref }}

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

Quote #: {{ quotation.quote_number }}


Customer:
{{ customer.user.get_full_name|default:customer.user.username }}
{% if customer.company_name %}{{ customer.company_name }}
{% endif %} {% if customer.user.email %}{{ customer.user.email }}
{% endif %} {% if customer.phone %}{{ customer.phone }}{% endif %}
Event:
{{ event.name }}
{{ event.date|date:"N j, Y" }}
{% if event.location %}{{ event.location }}{% endif %}
{% for item in quotation_line_items %} {% endfor %} {% if quotation.deposit_amount and quotation.deposit_amount != 0 %} {% endif %} {% if quotation.tax_rate and quotation.tax_rate != 0 %} {% endif %}
# Description Qty Unit Cost Price
{{ forloop.counter }} {{ item.description }} {{ item.qty|floatformat:2 }} ${{ item.unit_cost|floatformat:2 }} ${{ item.price|floatformat:2 }}
Subtotal ${{ quotation.subtotal|floatformat:2 }}
Deposit -${{ quotation.deposit_amount|floatformat:2 }}
Tax ({{ quotation.tax_rate|floatformat:2 }}%) ${{ quotation.tax_amount|floatformat:2 }}
Total ${{ quotation.total|floatformat:2 }}
{% if order.notes %}
Notes:

{{ order.notes }}

{% endif %} {% if order.is_paid and order.paid_at %}

Paid on {{ order.paid_at|date:"N j, Y" }}.

{% endif %}
Customer Comments / Special Requests:
{% endblock %}