{% extends "base.html" %} {% block title %}Quotes & Orders — {{ event.name }} — Jason Studio{% endblock %} {% block content %}
{{ event.name }} — {{ event.date }} — {{ event.location }}
| Customer | Quote | Order | Selections | |
|---|---|---|---|---|
| {{ row.customer.user.get_full_name|default:row.customer.user.username }} | {% if row.quotation %} {% if row.quotation.status == 'draft' %} Draft {% elif row.quotation.status == 'sent' %} Sent {% elif row.quotation.status == 'accepted' %} Accepted {% elif row.quotation.status == 'declined' %} Declined {% elif row.quotation.status == 'expired' %} Expired {% endif %} {% if row.quotation.is_expired and row.quotation.status != 'expired' and row.quotation.status != 'accepted' %} Expired {% endif %} {% else %} — {% endif %} | {% if row.order %} {% if row.order.status == 'pending_payment' %} Pending Payment {% elif row.order.status == 'paid' %} Paid {% elif row.order.status == 'in_progress' %} In Progress {% elif row.order.status == 'delivered' %} Delivered {% endif %} {% else %} — {% endif %} | {% if row.selection_total %} {{ row.digital_count }} digital {{ row.both_count }} print {% else %} — {% endif %} |
{% if row.quotation %}Quote{% else %}New Quote{% endif %}
{% if row.quotation %}
View Quote
{% endif %}
{% if row.order %}
Order
Invoice
{% endif %}
|