summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/sheet_address_section.html
blob: 91725817375e1da556965ac1ca776c2d7bd25e00 (plain)
1
2
3
4
5
6
{% load i18n %}
{% if item.address or item.address_complement or item.postal_code or item.town %}
<p><label>{% trans "Address" %}</label><pre>{% if item.address %}{{item.address}}{% endif %}{% if item.address_complement %}
{{item.address_complement}}{% endif %}{% if item.postal_code or item.town %}
{{item.postal_code}} {{item.town}}{% endif %}</pre>
</p>{% endif %}