diff options
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> |
