{% extends "base.html" %} {% block title %}Quotation — {{ event.name }} — Jason Studio{% endblock %} {% block content %}

Quotation for {{ customer.user.get_full_name|default:customer.user.username }}

Back to Orders

Event: {{ event.name }} — {{ event.date }}

{% if quotation.quote_number %} {{ quotation.quote_number }} {% endif %} {{ quotation.get_status_display }}
{% csrf_token %}
Quote Details
Line Items
{% if services %}
{% for svc in services %} {% endfor %}

{% endif %}
{% for item in line_items %}
{% empty %}

No line items yet. Add from the catalog or click "Add Item".

{% endfor %}
{% if quotation.quote_number %} View {% endif %} Cancel
{% endblock %}