{% extends "layout.html" %} {% block body %} <aside> <b>{% if devId == 1 %}Bedroom {% else %}Mainfloor {% endif %}Currently:</b> <ul class=current> <li>{{ current.temperature }}°F</li> <li>{{ current.humidity }}% humidity</li> </ul> </aside> <figure> <embed type="image/png" src="/htgraph.png?deviceId={{ devId }}" /> </figure> <figure> <embed type="image/png" src="/pgraph.png?deviceId={{ devId }}" /> </figure> {% if devId == 2 %} <figure> <embed type="image/png" src="/bgraph.png?deviceId={{ devId }}" /> </figure> {% endif %} <hr> <h2>Readings from the past 24 hours</h2> <p> <table class=log> <tr> <th>Timestamp</th> <th>Temperature (C)</th> <th>Humidity (%)</th> <th>Pressure (hPa)</th> </tr> {% for entry in log %} <tr> <td>{{ entry.date }}</td> <td>{{ entry.temperature }}</td> <td>{{ entry.humidity }}</td> <td>{{ entry.pressure }}</td> </tr> {% endfor %} </table> </p> {% endblock %}