{% extends "base.html" %} {% block title %}{{ facility.name }}{% endblock %} {% block content %}
| 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' }} |