Mercurial > personal > weather-server
annotate weather_server/templates/index.html @ 28:f817fa785c93
Make graph only consider visible points when setting range.
| author | Paul Fisher <paul@pfish.zone> | 
|---|---|
| date | Sun, 19 Jan 2020 17:05:11 -0500 | 
| parents | 99b0759386b1 | 
| children | 27217790dc04 | 
| rev | line source | 
|---|---|
| 
26
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
1 <!doctype html> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
2 <html> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
3 <head> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
4 <title>The Weather In Places</title> | 
| 
27
 
99b0759386b1
index: Add meta-viewport declaration.
 
Paul Fisher <paul@pfish.zone> 
parents: 
26 
diff
changeset
 | 
5 <meta name="viewport" content="width=device-width, initial-scale=1"> | 
| 
26
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
6 <link | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
7 rel="stylesheet" | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
8 href="{{ url_for('static', filename='style.css') }}"> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
9 <link | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
10 rel="shortcut icon" | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
11 href="{{ url_for('static', filename='thermometer.png') }}"> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
12 </head> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
13 <body class="home"> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
14 <h1><span>Weather</span></h1> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
15 <ul> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
16 {% for location in locations %} | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
17 <li> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
18 <a href="{{ url_for('show', location=location.key) }}"> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
19 <b>{{ location.name }}</b> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
20 <span> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
21 {%- set reading = location.latest() -%} | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
22 {%- if reading -%} | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
23 {{ reading.temp_f|round|int -}} | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
24  °F | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
25 {%- else -%} | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
26 ??? | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
27 {%- endif -%} | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
28 </span> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
29 </a> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
30 </li> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
31 {% endfor %} | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
32 </ul> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
33 </body> | 
| 
 
7def5611895b
Add support for an index page displaying all locations.
 
Paul Fisher <paul@pfish.zone> 
parents:  
diff
changeset
 | 
34 </html> | 
