{% extends "base.html" %} {% load tz %} {% block title %}Quotation {{ quotation.quote_number }} — 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 %}Quote #: {{ quotation.quote_number }}
Date: {{ quotation.created|date:"N j, Y" }}
{% if quotation.valid_until %}Valid Until: {{ quotation.valid_until|date:"N j, Y" }}
{% 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 Required | -${{ quotation.deposit_amount|floatformat:2 }} | |||
| Tax ({{ quotation.tax_rate|floatformat:2 }}%) | ${{ quotation.tax_amount|floatformat:2 }} | |||
| Total | ${{ quotation.total|floatformat:2 }} | |||
{{ quotation.notes }}
Accepted on {{ quotation.accepted_at|date:"N j, Y" }} by {{ quotation.accepted_by }}.
{% endif %}