{% extends "base.html" %} {% block title %}Order {{ order.ref }} — 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 %}Order #: {{ order.ref }}
Date: {{ order.date|date:"N j, Y" }}
Quote #: {{ quotation.quote_number }}
| # | 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 }} | |||
{{ order.notes }}
Paid on {{ order.paid_at|date:"N j, Y" }}.
{% endif %}