{% extends "djangobmf/report_html_base.html" %} {% load i18n %} {% block title %}{% blocktrans with name=object.name %}Quotation {{ name }}{% endblocktrans %}{% endblock %} {% block address %} {{ object.invoice_address.as_report|linebreaksbr }} {% endblock %} {% block extra %} {% trans "Your contact person" %}:
{{ block.super }} {% endblock %} {% block document %}
{% blocktrans with name=object.name %}Quotation {{ name }}{% endblocktrans %} {{ object.created|date:"DATE_FORMAT" }}

{% trans "Dear Valued Customer," %}

{% for item in object.get_products %} {% endfor %}
{% trans "Quantity" %} {% trans "Article" %} {% trans "Tax" %} {% trans "Unit price" %} {% trans "Total price" %}

{{ item.amount }}
 

{{ item.name }} {% if item.description %}
{{ item.description|linebreaksbr }}{% endif %}

{% for tax, value in item.calc_taxes %} {{ tax }}{% if not forloop.first %}
{% endif %} {% endfor %}
{{ item.calc_net_unit }} € {{ item.calc_net }} €
{% for tax, value in object.calc_taxes %} {% endfor %}
{% trans "Subtotal" %} {{ object.calc_net }} €
{{ tax }} {{ value }} €
{% trans "Billing amount" %} {{ object.calc_gross }} €

 

{% trans "With kind regards" %}

{{ object.employee }}

{% endblock %}