| {{ _('Description') }} | {{ _('Quantity') }} | {{ _('Unit Price') }} | {{ _('Total Amount') }} |
|---|---|---|---|
| {{ item.description|e }} | {{ '%.2f' % item.quantity }} {% if item.unit %}{{ item.unit }}{% endif %} | {{ format_money(item.unit_price) }} | {{ format_money(item.total_amount) }} |
| {{ _('Subtotal:') }} | {{ format_money(quote.subtotal) }} | ||
| {{ _('Discount') }} {% if quote.discount_type == 'percentage' %} ({{ "%.2f"|format(quote.discount_amount) }}%) {% endif %} {% if quote.coupon_code %} - {{ quote.coupon_code }} {% endif %} | -{{ format_money(quote.discount_value) }} | ||
| {{ _('Subtotal After Discount:') }} | {{ format_money(quote.subtotal_after_discount) }} | ||
| {{ _('Tax (%(rate).2f%%):', rate=quote.tax_rate) }} | {{ format_money(quote.tax_amount) }} | ||
| {{ _('Total Amount:') }} | {{ format_money(quote.total_amount) }} | ||
{{ quote.description|e }}
{{ quote.terms|e }}