{% extends "pdf/base.html" %} {% load i18n%} {% block extra_head %} {% endblock %} {% block content %} {% for c in contacts %} {% if forloop.counter0 == 0 or forloop.counter0|divisibleby:2 %} {% endif %} {% if forloop.counter|divisibleby:2 %} {% endif %} {% endfor %}
{% if not c.entity.is_single_contact %}
{{ c.entity.name }}
{% endif %}
{{ c.fullname}}
{% if c.get_full_address %}
{{ c.get_address1 }}
{% if c.get_address2 %}
{{ c.get_address2 }}
{% endif %} {% if c.get_address3 %}
{{ c.get_address3 }}
{% endif %}
{{ c.get_zip_code }} {{ c.get_city }} {{ c.get_cedex }}
{% else %}
{% trans "WARNING : NO ADDRESS DEFINED" %}
{% endif %}
{% endblock %}