{% extends '../template.html' %} {% block content %} {% load humanize %} {% load static %}

Quote Information {{ quote_id }}

{{ quote_readonly_form.media }}

{{ quote_results.quote_title }}

{{ quote_readonly_form.quote_terms }}
Quote Stage: {{ quote_results.quote_stage_id }}
Timezone: {{ timezone }}
Quote Valid Till: {{ quote_results.quote_valid_till }}
{% if quote_results.customer_notes %}
{{ quote_readonly_form.customer_notes }}
{% endif %} {% if quote_results.quote_billing_address %}
{{ quote_results.quote_billing_address }}
{% endif %}
{% if quote_results.project_id or quote_results.task_id or quote_results.organisation_id or quote_results.customer_id or quote_results.opportunity_id %}

Quote Links

{% if quote_results.project_id %} {% elif quote_results.task_id %} {% elif quote_results.organisation_id %} {% elif quote_results.customer_id %} {% elif quote_results.opportunity_id %} {% else %} {% endif %}
Link Description
PRO{{ quote_results.project_id.project_id }} {{ quote_results.project_id }}
TASK{{ quote_results.task_id.task_id }} {{ quote_results.task_id }}
ORG{{ quote_results.organisation_id.organisation_id }} {{ quote_results.organisation_id }}
CUST{{ quote_results.customer_id.customer_id }} {{ quote_results.customer_id }}
OPP{{ quote_results.opportunity_id.opportunity_id }} {{ quote_results.opportunity_id.opportunity_name }}
NA Sorry, this quote is not linked.
{% endif %}

Line Items

{% if product_line_items %}

Product Line Items

{% for row in product_line_items %} {% if row.discount_choice == "Percentage" %} {% else %} {% endif %} {% if not row.product_note == "" %} {% endif %} {% endfor %}
Product Price Quantity Discount Amount Sales Price Tax % Tax Amount Total Delete
{{ row.product_and_service }} {{ row.product_price }} {{ row.quantity }}{{ row.discount_percent }}% = {{ row.discount_amount }} {{ row.discount_amount }} {{ row.discount_amount }}{{ row.sales_price }} {{ row.tax }} {{ row.tax_amount }} {{ row.total }} Delete
Product Note: {{ row.product_note }}

Unadjusted Price [JAVASCRIPT TO FILL]
Discount [JAVASCRIPT TO FILL]
Sales Price [JAVASCRIPT TO FILL]
Tax [JAVASCRIPT TO FILL]
Grand Total [JAVASCRIPT TO FILL]
{% endif %} {% if service_line_items %}

Service Line Items

{% for row in service_line_items %} {% if row.discount_choice == "Percentage" %} {% else %} {% endif %} {% if not row.product_note == "" %} {% endif %} {% endfor %}
Service Price Quantity Discount Amount Sales Price Tax % Tax Amount Total Delete
{{ row.products_and_services }} {{ row.product_price }} {{ row.quantity }}{{ row.discount_percent }}% = {{ row.discount_amount }} {{ row.discount_amount }} {{ row.discount_amount }}{{ row.sales_price }} {{ row.tax }} {{ row.tax_amount }} {{ row.total }} Delete
Product Note: {{ row.product_note }}

Unadjusted Price [JAVASCRIPT TO FILL]
Discount [JAVASCRIPT TO FILL]
Sales Price [JAVASCRIPT TO FILL]
Tax [JAVASCRIPT TO FILL]
Grand Total [JAVASCRIPT TO FILL]
{% endif %}

Totals

Unadjusted Price [JAVASCRIPT TO FILL]
Discount [JAVASCRIPT TO FILL]
Sales Price [JAVASCRIPT TO FILL]
Tax [JAVASCRIPT TO FILL]
Grand Total [JAVASCRIPT TO FILL]

Responsible Customers

{% if responsible_customer_results %} {% if quote_permission > 3 %} {% endif %} {% for row in responsible_customer_results %} {% if quote_permission > 3 %} {% endif %} {% endfor %}
Customer Name Customer email
{{ row.customer_title }} {{ row.customer_first_name }} {{ row.customer_last_name }} {{ row.customer_email }}Remove Customer
{% else %}

Currently there are no responsible customers for this quote. Please add them

{% endif %}
{% if email_results %}

Email History

{% for row in email_results %} {% if email_permission > 1 %} {% endif %} {% endfor %}
Subject Date Sent By
{{ row.email_subject }}{{ row.date_created }} {{ row.change_user }}
{% endif %} {% if quote_template_results %}

Quote Preview

{% endif %} {% if assigned_user_results %}

Assigned Users

{% if permissions > 3 %} {% endif %} {% if assigned_user_results %} {% for row in assigned_user_results %} {% if permissions > 3 %} {% endif %} {% endfor %} {% endif %}
Username First Name Last nameRemove User
{{ row.assigned_user.username }} {{ row.assigned_user.first_name }} {{ row.assigned_user.last_name }}Remove User
{% endif %} {% if group_list_results %}

Assigned Groups

{% for row in group_list_results %} {% endfor %}
Assigned Group Name Delete Assigned Group
{{ row.group_id }} {% if group_list_results.count == 1 %} --- Can not remove last group --- {% else %} Delete Group {% endif %}
{% endif %} {% endblock %}