{% load helpers %}
Contacts
{% with contacts=object.contacts.all %} {% if contacts.exists %} {% for contact in contacts %} {% endfor %}
Name Role Priority Phone Email
{{ contact.contact|linkify }} {{ contact.role|placeholder }} {{ contact.get_priority_display|placeholder }} {% if contact.contact.phone %} {{ contact.contact.phone }} {% else %} {{ ''|placeholder }} {% endif %} {% if contact.contact.email %} {{ contact.contact.email }} {% else %} {{ ''|placeholder }} {% endif %} {% if perms.tenancy.change_contactassignment %} {% endif %} {% if perms.tenancy.delete_contactassignment %} {% endif %}
{% else %}
None
{% endif %} {% endwith %}
{% if perms.tenancy.add_contactassignment %} {% endif %}