{% extends "base.html.jinja" %} {% block content %}

Room: {{ current_room.name }}

Current readings:

{% for sensorinfo in sensorinfolist %}
{{ sensorinfo.type }}
{{ sensorinfo.reading }}
{% if sensorinfo.state == 0 %}
{% elif sensorinfo.state == 1 %}
{% else %}
{% endif %} Last updated: {{ sensorinfo.timestamp }}
{% endfor %}
{{ fig }}
{% endblock content %}