aboutsummaryrefslogtreecommitdiffstats
path: root/templates/show_entries.html
blob: 572f360dad36f9ea5b13adb1eafe9d51a4ce459e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "layout.html" %}
{% block body %}
    <figure>
	<embed type="image/svg+xml" src="/tgraph.svg" />
    </figure>
    <figure>
	<embed type="image/svg+xml" src="/hgraph.svg" />
    </figure>
    <figure>
	<embed type="image/svg+xml" src="/pgraph.svg" />
    </figure>
    <ul class=weather>
	{% for entry in weather %}
	<li><h2>{{ entry.date }}</h2>Temp: {{ entry.temperature }}, Humidity: {{ entry.humidity }}, Pressure: {{ entry.pressure }}
	{% else %}
	<li><em>No entries here so far</em>
	{% endfor %}
    </ul>
{% endblock %}