{% load i18n %} {% if item.address or item.address_complement or item.postal_code or item.town or item.precise_town%}
{% trans "Address" %}
{% 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 %}
{% endif %}