{% load i18n %} {% if c %} {% if not c.entity.is_single_contact %}
{{ c.entity.name }}
{% endif %} {% if c.entity.is_single_contact %}
{{ c.fullname }}
{% endif %} {% if c.get_full_address %} {% with c.get_city as city %}
{{ c.get_address }}
{% if c.get_address2 %}
{{ c.get_address2 }}
{% endif %} {% if c.get_address3 %}
{{ c.get_address3 }}
{% endif %}
{{ c.get_zip_code }} {{ city }} {{ c.get_cedex }}
{% with city.get_country as country %} {% if country.is_foreign_country %}{{ country }}{% endif %} {% endwith %}{% endwith %} {% else %} {{c}}
{% trans "WARNING : NO ADDRESS DEFINED" %}
{% endif %} {% endif %}