{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "New Quotation" %} | {{ site_settings.business_name }}{% endblock %} {% block content %}
{% trans "Create New Quotation" %}
{% trans "Product" %} {% trans "Unit Price" %} {% trans "Quantity" %} {% trans "Total" %}
[[ item.name_en ]]
[[ item.sku ]]
[[ currencySymbol ]][[ (item.price * item.quantity).toFixed(3) ]]
{% trans "Search and add products to this quotation." %}
{% trans "Quotation Summary" %}
{% trans "Subtotal" %} [[ currencySymbol ]][[ subtotal.toFixed(3) ]]
{% trans "Discount" %}

{% trans "Grand Total" %}

[[ currencySymbol ]][[ grandTotal.toFixed(3) ]]

{% endblock %}