Room Lookup

{% if room_data %}

Details for Room {{ selected_room }}

{% for id, chemical_name, amount, location, phs in room_data %} {% endfor %}
Campus Optics ID Name Amount Location Particularly Hazardous Substance (PHS)
{{ id }} {{ chemical_name }} {{amount}} {{location if location else ''}} {{ 'Yes' if phs else '' }}
{% else %} {% if selected_room %}

No data available for Room {{ selected_room }}.

{% endif %} {% endif %}