summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/sheet_address_section.html
blob: fe4bd80bbb38cd1b638b35429ed5e80ab03df644 (plain)
1
2
3
4
5
6
7
8
9
10
{% load i18n %}
{% if item.address or item.address_complement or item.postal_code or item.town %}
<div class="col-12 col-md-6 col-lg-4 d-flex flex-wrap row">
    <dt class="col-5">{% trans "Address" %}</dt>
    <dd class="col-7">
    <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>
    </dd>
</div>{% endif %}