{% load static %} Quotation {{ quotation.quotation_number }}
{{ quotation.get_status_display|upper }}
Bill To

{{ quotation.customer.name }}

{{ quotation.customer.get_address_display|linebreaksbr }}

{% if quotation.customer.phone %}

{{ quotation.customer.phone }}

{% endif %} {% if quotation.customer.email %}

{{ quotation.customer.email }}

{% endif %}
From

{{ quotation.branch.name }}

{{ quotation.branch.address|linebreaksbr }}

{% if quotation.branch.phone %}

{{ quotation.branch.phone }}

{% endif %} {% if quotation.branch.email %}

{{ quotation.branch.email }}

{% endif %}
{% for item in quotation.items.all %} {% endfor %}
# DESCRIPTION QTY UNIT PRICE TOTAL
{{ forloop.counter }}
{{ item.product.name }}
{% if item.notes %}
{{ item.notes }}
{% endif %}
{{ item.quantity|floatformat:2 }} {{ item.product.unit|default:'' }} KSh {{ item.unit_price|floatformat:2 }} KSh {{ item.total_price|floatformat:2 }}
{% if quotation.tax_amount %} {% endif %} {% if quotation.discount_amount %} {% endif %}
Subtotal: KSh {{ quotation.subtotal|floatformat:2 }}
Tax ({{ quotation.tax_rate|default:0 }}%): KSh {{ quotation.tax_amount|default:0|floatformat:2 }}
Discount: - KSh {{ quotation.discount_amount|floatformat:2 }}
Total Amount: KSh {{ quotation.total|floatformat:2 }}
{% if quotation.notes %}
Notes

{{ quotation.notes|linebreaksbr }}

{% endif %} {% if quotation.terms %}
Terms & Conditions
{{ quotation.terms|linebreaksbr }}
{% endif %}

Authorized Signature

Customer's Signature

{{ company_settings.company_name|default:"Our Company" }} | {{ company_settings.address|default:"Company Address"|truncatewords:10 }}

{% if company_settings.phone %}{{ company_settings.phone }} | {% endif %} {% if company_settings.email %}{{ company_settings.email }} | {% endif %} {% if company_settings.website %}{{ company_settings.website }}{% endif %}

{{ quotation.created_by.get_full_name|default:quotation.created_by.username }}

{{ quotation.created_at|date:"F j, Y H:i" }}

___________________________

Authorized Signature

(Company Stamp)