{% extends "base.html" %} {% block title %}{{ facility.name }}{% endblock %} {% block content %}

{{ facility.name }}

{% if current_user.role in ['admin', 'supervisor'] %} Edit Add Area {% endif %}
Facility Information
Address: {{ facility.address or 'N/A' }}
Contact Person: {{ facility.contact_person or 'N/A' }}
Contact Phone: {{ facility.contact_phone or 'N/A' }}
Status: {{ 'Active' if facility.active else 'Inactive' }}
Statistics

{{ areas|length }}

Areas

{{ facility.inspections.count() }}

Inspections
Areas
{% if areas %}
{% for area in areas %} {% endfor %}
Area Name Type Inspections Actions
{{ area.name }} {{ area.area_type|title if area.area_type else 'N/A' }} {{ area.inspections.count() }} {% if current_user.role in ['admin', 'supervisor'] %}
{% endif %}
{% else %}
No areas defined for this facility yet.
{% endif %}
{% endblock %}