{% load staticfiles %}
Home Status Summary
House Environment
Location
Current Temperature (deg. F)
{% for t in temperature_status %}
{{ t.location }}
{{ t.temperature }}
{% endfor %}
Location
Current Humidity
{% for t in humidity_status %}
{{ t.location }}
{{ t.humidity }}%
{% endfor %}
Temperature Details
Humidity Details
Lights
Light
Current Brightness (last updated)
Control
{% for l in light_status_list %}
{{ l.light_id }}
{{ l.brightness }} ( {{ l.last_updated }})
ON
OFF
{% endfor %}