From e473683bcd55aba487b1baac055b352911a49271 Mon Sep 17 00:00:00 2001 From: Timotheus Pokorra Date: Sat, 30 Jan 2021 22:01:38 +0100 Subject: [PATCH] small fix: reorder the output of rates per period --- apps/monitor/templates/monitor.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/monitor/templates/monitor.html b/apps/monitor/templates/monitor.html index 1dfc8de..3e75c73 100644 --- a/apps/monitor/templates/monitor.html +++ b/apps/monitor/templates/monitor.html @@ -102,10 +102,10 @@

{{ g.label }}


Start: {{ g.startdate }} {{ g.startvalue|floatformat:0 }} EUR
- Min: {{ g.mindate }} {{ g.minvalue|floatformat:0 }} EUR
- Max: {{ g.maxdate }} {{ g.maxvalue|floatformat:0 }} EUR
Now: {{ g.curdate }} {{ g.curvalue|floatformat:0 }} EUR
Diff: {{ g.diffPercentage|floatformat:1 }} %
+ Min: {{ g.mindate }} {{ g.minvalue|floatformat:0 }} EUR
+ Max: {{ g.maxdate }} {{ g.maxvalue|floatformat:0 }} EUR
{% endfor %}