diff options
| author | root <root@turin.home> | 2022-01-30 15:41:58 +0000 |
|---|---|---|
| committer | root <root@turin.home> | 2022-01-30 15:41:58 +0000 |
| commit | 333bdb9507ca82709d92fe8919a9b40fc02d7dc7 (patch) | |
| tree | 52f0c6375d7dbdd59ce01a9d73a82a0302d18e54 /templates | |
| parent | 74a189c366e07e681176bc207bdcc1aa316790c7 (diff) | |
Minor fixes
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/main.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/main.html b/templates/main.html index 296d813..262ba6f 100644 --- a/templates/main.html +++ b/templates/main.html @@ -6,10 +6,10 @@ href= "{{ url_for('static',filename='style.css') }}"> </head> <body> - <p> {{ forecast_temp }} </p> + <p> Outside: {{ forecast_temp }} </p> <a href="/up"> <p>Increase</p> </a> - <p> {{ actual_temp }} </p> - <p> {{ target_temp }} </p> + <p> Inside: {{ actual_temp }} </p> + <p> Target: {{ target_temp }} </p> <a href="/down"> <p>Decrease</p> </a> <a href="/export"> <p>Export data</p> </a> </body> |
