{% 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 %}staff contact picture{% endif %}
{% include 'snippets/contact_person.html' %}
{% endif %} {% endfor %}
{% endfor %} {% endblock %}