{% if emergency_contacts %} {% for contact in emergency_contacts %}
{{ contact.get_full_name }} {{ contact.get_relationship_display }}
{{ contact.phone_number }} {% if contact.email %}
{{ contact.email }}{% endif %}
{% if contact.priority == 1 %} Primary {% endif %}
{% endfor %} {% else %}

No emergency contacts

{% endif %}