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

Quotes & Orders

{{ event.name }} — {{ event.date }} — {{ event.location }}

Dashboard
{% if customer_rows %} {% for row in customer_rows %}
{{ row.customer.user.get_full_name|default:row.customer.user.username }}
{% if row.quotation %} {% if row.quotation.status == 'draft' %} Quote: Draft {% elif row.quotation.status == 'sent' %} Quote: Sent {% elif row.quotation.status == 'accepted' %} Quote: Accepted {% elif row.quotation.status == 'declined' %} Quote: Declined {% elif row.quotation.status == 'expired' %} Quote: Expired {% endif %} {% if row.quotation.is_expired and row.quotation.status != 'expired' and row.quotation.status != 'accepted' %} Expired {% endif %} {% endif %} {% if row.order %} {% if row.order.is_paid %} Paid {% else %} Unpaid {% endif %} {% if row.order.status == 'delivered' %} Delivered {% elif row.order.status == 'partially_delivered' %} Partial {% endif %} {% endif %} {% if row.selection_total %} {{ row.digital_count }} digital {{ row.both_count }} print {% endif %}
{% if not row.quotation %} New Quote {% elif not row.order %} Edit Quote {% if row.quotation.status == 'draft' or row.quotation.status == 'sent' %}
{% csrf_token %}
{% endif %} {% else %} View Quote Order Invoice Fulfilment {% if row.order.status == 'delivered' %}Delivered {% elif row.order.status == 'partially_delivered' %}Partial {% elif row.order.is_paid %}Paid {% else %}Unpaid {% endif %} {% endif %}
{% endfor %}
{% for row in customer_rows %} {% endfor %}
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.is_paid %} Paid {% else %} Unpaid {% endif %} {% if row.order.status == 'delivered' %} Delivered {% endif %} {% else %} {% endif %} {% if row.selection_total %} {{ row.digital_count }} digital {{ row.both_count }} print {% else %} {% endif %}
{% if not row.quotation %} New Quote {% elif not row.order %} Edit Quote {% if row.quotation.status == 'draft' or row.quotation.status == 'sent' %}
{% csrf_token %}
{% endif %} {% else %} View Quote Order Invoice Fulfilment {% if row.order.status == 'delivered' %}Delivered {% elif row.order.is_paid %}Paid {% else %}Unpaid {% endif %} {% endif %}
{% else %}
No customers linked to this event yet. Add customers on the Event Details page.
{% endif %} {% endblock %}