{% if occupants|length > 0 %} Staff members are highlighted in green.

{# Panel is used to make table borders rounded. #}

{% for o in occupants %} {% endfor %}
{{ area.name }} occupancy {% if occupants|length > 1 %} {% if area.maximum_capacity != 0 and occupants|length >= area.danger_capacity %} {% elif area.maximum_capacity != 0 and occupants|length >= area.warning_capacity %} {% else %}{% endif %} {{ occupants|length }} {% if area.maximum_capacity != 0 %} / {{ area.maximum_capacity }}{% endif %} people {% endif %}
User Since Working on project...
{{ o.customer.first_name }} {{ o.customer.last_name }} {{ o.start|date:"l @ g:i A" }} {{ o.project }}
{% endif %}