From 866247a8ef351c97bf845799ef78f7eea25f9793 Mon Sep 17 00:00:00 2001
From: gregor herrmann
Date: Wed, 5 Sep 2018 23:33:09 +0200
Subject: [PATCH 1/1] template: add spans with IDs fur current values
as a preparation for replacing them
---
web/templates/seepark_web.html | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/web/templates/seepark_web.html b/web/templates/seepark_web.html
index ecf0444..a424547 100644
--- a/web/templates/seepark_web.html
+++ b/web/templates/seepark_web.html
@@ -30,13 +30,13 @@
{% if airvalue is none %}
Luft: N/A
{% else %}
- Luft: {{ airvalue|round(1) }}°C
- ({{ airtime.strftime('%Y-%m-%d %H:%M') }})
+ Luft: {{ airvalue|round(1) }}°C
+ ({{ airtime.strftime('%Y-%m-%d %H:%M') }})
{% endif %}
- Wasser: {{ watervalue|round(1) }}°C
- ({{ watertime.strftime('%Y-%m-%d %H:%M') }})
+ Wasser: {{ watervalue|round(1) }}°C
+ ({{ watertime.strftime('%Y-%m-%d %H:%M') }})
--
2.47.3