| {{ 'Säljare' | trans }} |
| {{ invoice.sellerName }} |
{% if invoice.sellerEmail is not empty %}
| {{ invoice.sellerEmail }} |
{% endif %}
{% if invoice.sellerMobile is not empty %}
| {{ invoice.sellerMobile }} |
{% endif %}
| {{ invoice.sellerAddress }}, {{ invoice.sellerPostCode }} |
{% if invoice.sellerCity is not empty %}
| {{ invoice.sellerCity }} |
{% endif %}
{% if invoice.sellerCountry is not empty %}
| {{ invoice.sellerCountry }} |
{% endif %}
|
| {{ 'Köpare' | trans }} |
| {{ invoice.buyerName }} |
{% if invoice.buyerEmail is not empty %}
| {{ invoice.buyerEmail }} |
{% endif %}
{% if invoice.buyerMobile is not empty %}
| {{ invoice.buyerMobile }} |
{% endif %}
| {{ invoice.buyerAddress }}, {{ invoice.buyerPostCode }} |
{% if invoice.buyerCity is not empty %}
| {{ invoice.buyerCity }} |
{% endif %}
{% if invoice.buyerCountry is not empty %}
| {{ invoice.buyerCountry }} |
{% endif %}
|