temperature.tpl 1011 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Übersicht Wetter</title>
  5. </head>
  6. <body>
  7. <p>Zeit: {{zeitstempel}}</p>
  8. <table>
  9. <tr><th>Ort</th> <th>Temperatur</th> <th>Luftfeuchte </th> <th>Luftdruck </th><th>lux</th><th>UV </th></tr>
  10. <tr><th>CarPort</th> <th>{{tempdata['temp_carport']}}</th> <th>{{tempdata['hum_carport']}} </th> <th>{{tempdata['press_carport']}} </th><th></th></tr>
  11. <tr><th>Wohnzimmer</th> <th>{{tempdata['temp_wohnen']}}</th> <th>{{tempdata['hum_wohnen']}} </th> <th>{{tempdata['press_wohnen']}} </th><th></th></tr>
  12. <tr><th>Dach</th> <th>{{tempdata['temp_dach']}}</th> <th>{{tempdata['hum_dach']}} </th> <th>{{tempdata['press_dach']}} </th><th>{{tempdata['lux_dach']}}</th><th>{{tempdata['uv_dach']}}</th></tr>
  13. <tr><th>Garten</th> <th>{{tempdata['temp_garten']}}</th> <th>{{tempdata['hum_garten']}} </th> <th>{{tempdata['press_garten']}} </th><th></th><th></th></tr>
  14. <tr><th>Solarthermiemodul</th> <th>{{tempdata['temp_solar']}}</th> <th></th> <th></th><th></th><th></th></tr>
  15. </table>
  16. </body>
  17. </html>