- <div id="chart"></div>
- <div id="buttonbar">
- <button onclick="loaddays(1)">Tag</button>
- <button onclick="loaddays(7)">Woche</button>
- <button onclick="loaddays(30)">Monat</button>
- <button onclick="loaddays(365)">Jahr</button>
+ <h2>Aktuelle Werte</h2>
+ <div id="current">
+ <p id="currentair">
+ {% if airvalue is none %}
+ <strong>Luft: N/A</strong>
+ {% else %}
+ <strong>Luft: {{ airvalue|round(1) }}°C</strong><br />
+ <small>({{ airtime.strftime('%Y-%m-%d %H:%M') }})</small>
+ {% endif %}
+ </p>
+ <p id="currentwater">
+ <strong>Wasser: {{ watervalue }}°C</strong><br />
+ <small>({{ watertime }})</small>
+ </p>