{{ myinvoice.header.name }}
{{ myinvoice.header.address }}
{{ _('Phone')}}:{{ myinvoice.header.phone }}
{{ _('Email')}}:{{ myinvoice.header.email }}
{{ _('NIF')}}:{{ myinvoice.header.cif }}
{{ _('Payment can be done by transfer to the following bank account:') }} {{ myinvoice.header.more|safe }}
{{ _('Customer')}}:{{ myinvoice.customer.name }}
{{ _('Address')}}:{{ myinvoice.customer.address }}
{{ _('Invoice number')}}:{{ myinvoice.invoice_number }}
{{ _('Date')}}:{{ myinvoice.date|date:"d/m/Y" }}
{% for l in myinvoice.line.all %} {% endfor %}
{{ _('REF') }} {{ _('CONCEPT') }} {{ _('QUANTITY') }} {{ _('UNIT PRICE') }} {{ _('AMOUNT') }}
{{ l.reference }} {{ l.concept }} {{ l.quantity }} {{ l.unit }} {{ l.unit_price|floatformat:2 }} {{ myinvoice.currency }} {{ l.amount|floatformat:2 }} {{ myinvoice.currency }}



{{ _('Subtotal') }}{{ myinvoice.subtotal|floatformat:2 }} {{ myinvoice.currency }}
{{ _('Taxes') }}{{ myinvoice.subtotal_iva|floatformat:2 }} {{ myinvoice.currency }}
{{ _('Total') }}{{ myinvoice.total|floatformat:2 }} {{ myinvoice.currency }}

{{ _('Thanks for working with us') }}