{% load helpers %} {% with contacts=object.contact.all %} {% if contacts.exists %}
Contact
{% for contact in contacts %} {% endfor %}
Name Title Phone Email
{{ contact.name }} {{ contact.title|placeholder }} {% if contact.phone %} {{ contact.phone }} {% else %} {{ ''|placeholder }} {% endif %} {% if contact.email %} {{ contact.email }} {% else %} {{ ''|placeholder }} {% endif %}
{% endif %} {% endwith %}