{{ myinvoice.header.name }} |
{{ myinvoice.header.address }} |
{{ myinvoice.header.city }} |
{{ _('Phone')}}: | {{ myinvoice.header.phone }} |
{{ _('Email')}}: | {{ myinvoice.header.email }} |
{{ _('NIF')}}: | {{ myinvoice.header.cif }} |
|
{% if myinvoice.header.budget_more %}{{ myinvoice.header.budget_more|safe }}{% else %}{{ _('Budget') }}{% endif %} |
|
|
|
|
{{ _('Customer')}}: | {{ myinvoice.customer.name }} |
{% if myinvoice.customer.cif %}{{ _('CIF/NIF')}}: | {{ myinvoice.customer.cif }} | {% endif %}
{{ _('Address')}}: | {{ myinvoice.customer.address }} |
|
{{ _('Date')}}: | {{ myinvoice.date|date:"d/m/Y" }} |
|
|
|
|
{% if myinvoice.description1 %}
{{ myinvoice.description1|safe }} |
|
|
|
{% endif %}
{{ _('REF') }} |
{{ _('CONCEPT') }} |
{{ _('QUANTITY') }} |
{% if myinvoice.price_per_line %}{{ _('UNIT PRICE') }} |
{{ _('AMOUNT') }} | {% endif %}
{% for l in myinvoice.budget_line.all %}
{{ l.reference }} |
{{ l.concept }} |
{{ l.quantity }} {{ l.unit }} |
{% if myinvoice.price_per_line %}{{ l.unit_price|floatformat:2 }} {{ myinvoice.currency }} |
{{ l.amount|floatformat:2 }} {{ myinvoice.currency }} | {% endif %}
{% endfor %}
{{ _('Total') }} |
{{ myinvoice.total|safe }} {{ myinvoice.currency }} |
|
|
|
|
{% if myinvoice.description2 %}
{{ myinvoice.description2|safe }} |
|
|
|
{% endif %}
{{ myinvoice.header.name }}
{{ myinvoice.header.email }}
{{ myinvoice.header.address }}
{{ myinvoice.header.city }}
{{ myinvoice.header.url }}
|
{{ _('Thanks for working with us') }}
|