{% extends 'base.html' %} {% block title %}Contact {{ facility_name }} staff{% endblock %} {% block content %}

Contact information

{% for category in categories %}

{{ category }}

{% for person in people %} {% if person.category == category %}
{% if person.image %}{% endif %}

{{ person.name }}

{% if person.email %}Email: {{ person.email }}
{% endif %} {% if person.office_phone %}Office phone: {{ person.office_phone }}
{% endif %} {% if person.mobile_phone %} Mobile phone: {% if person.mobile_phone_is_sms_capable %} {% else %} {{ person.mobile_phone }}
{% endif %} {% endif %} {% if person.office_location %}Office location: {{ person.office_location }}
{% endif %}
{% endif %} {% endfor %}
{% endfor %} {% endblock %}