{% if contact.birthday %} {% with "Birthday" as title %} {% with contact.birthday as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% for phoneNumber in contact.phoneNumbers %} {% if phoneNumber.smsLink %} {% with phoneNumber.type as title %} {% with phoneNumber.numberLink|safe|add:" "|add:phoneNumber.smsLink|safe as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% else %} {% with phoneNumber.type as title %} {% with phoneNumber.numberLink|safe as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% endfor %} {% for email in contact.emails %} {% with "Email" as title %} {% with email as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endfor %} {% if contact.website %} {% with "Website" as title %} {% with contact.website|safe as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% if contact.blogUrl %} {% with "Blog Feed" as title %} {% with contact.blogUrl|safe as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% for address in contact.addresses %} {% with address.type as title %} {% with address.formattedAddressLink|safe as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endfor %} {% if contact.imAddress %} {% with "IM Address" as title %} {% with contact.imAddress as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% if contact.profession %} {% with "Profession" as title %} {% with contact.profession as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% if contact.department %} {% with "Department" as title %} {% with contact.department as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% if contact.office %} {% with "Office" as title %} {% with contact.department as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% if contact.manager %} {% with "Manager's Name" as title %} {% with contact.manager as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% if contact.assistant %} {% with "Assistant's Name" as title %} {% with contact.assistant as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% if contact.spouse %} {% with "Partner's Name" as title %} {% with contact.spouse as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% if contact.anniversary %} {% with "Anniversary" as title %} {% with contact.anniversary as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %} {% for customField in contact.customFields %} {% with customField.title as title %} {% with customField.value as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endfor %} {% if contact.addressBookName %} {% with "Address Book" as title %} {% with contact.addressBookName as value %} {% include "contact_row.html" %} {% endwith %} {% endwith %} {% endif %}
{{ contact.name }}
{{ contact.role }}
{{ contact.organization }}