blob: a42cd6ccaf31e2613330556519b250004ea0d93f (
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 or item.precise_town%}
<dl class="{% if full %}col-12 col-lg-6{% else %}col-12 col-md-6 col-lg-4 d-flex row{% endif %} flex-wrap">
<dt>{% trans "Address" %}</dt>
<dd>
<pre>{% if item.address %}{{item.address}}{% endif %}{% if item.address_complement %}
{{item.address_complement}}{% endif %}{% if item.postal_code or item.town or item.precise_town %}
{{item.postal_code}} {% if item.precise_town %}{{item.precise_town}}{% else %}{{item.town}}{% endif %}{% endif %}</pre>
</dd>
</dl>{% endif %}
|