{# This template is for a daily overview. #} {% extends "base.html" %} {% block title %}Indoor weather for {{ data.date_stamp }}{% endblock %} {% block content %}

Indoor weather for {{ data.date_stamp }}


{# This is only shown when we are looking at todays weather. #}

These are recordings for temperature and humidity at the indoor base station.

{% if data.current_data %}

Conditions as of {{ data.current_data_ts }}

Data is for the five minute period ending at {{ data.current_data_ts }}

Sensor Value
Indoor Relative Humidity {{ data.current_data.indoor_relative_humidity }}%
Indoor Temperature {{ data.current_data.indoor_temperature|round(1) }}°C
{% endif %}

1-day Charts

[1-day Indoor Temperature] [1-day Humidity]

7-day Charts

[7-day Indoor Temperature] [7-day Humidity]
Back to outdoor weather
{% endblock %}