summaryrefslogtreecommitdiff
path: root/waterspout_radar/templates/predictions.html
blob: 1fa384089c102ef0ad32937155dab44c39c4c499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html lang="en">
<meta charset="utf-8">
<title>Predictions</title>
<h1>Predictions</h1>
<hr>
<table>
<tr><th>Time<th>Low Clouds<th>&Delta;Temp<th>Cloud Depth<th>Wind<th>SWI</tr>
{% for p in predictions %}
<tr>
<td>{{ p.time }}
<td>{{ "{:.0f}".format(p.low_clouds * 100) }}%
<td>{{ "{:.1f}".format(p.temperature_difference) }}
<td>{{ "{:.1f}".format(p.convective_cloud_depth) }}
<td>{{ "{:.1f}".format(p.wind) }}
<td>{{ "{:.1f}".format(p.swi) }}
</tr>
{% endfor %}
</table>