9 lines
248 B
HTML
9 lines
248 B
HTML
{{ address_line1 }}<br>
|
|
{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}
|
|
{% if country in ["Germany", "Deutschland"] %}
|
|
{{ pincode }} {{ city }}
|
|
{% else %}
|
|
{{ pincode }} {{ city | upper }}<br>
|
|
{{ country | upper }}
|
|
{% endif %}
|