diff options
Diffstat (limited to 'templates/show_entries.html')
-rw-r--r-- | templates/show_entries.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/show_entries.html b/templates/show_entries.html new file mode 100644 index 0000000..572f360 --- /dev/null +++ b/templates/show_entries.html @@ -0,0 +1,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 %} |