aboutsummaryrefslogtreecommitdiffstats
path: root/templates/show_entries.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_entries.html')
-rw-r--r--templates/show_entries.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/templates/show_entries.html b/templates/show_entries.html
index 1f18d68..5a9d989 100644
--- a/templates/show_entries.html
+++ b/templates/show_entries.html
@@ -1,11 +1,13 @@
{% extends "layout.html" %}
{% block body %}
- {{ wgraph.render()|safe }}
- <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>
+ <figure>
+ <embed type="image/svg+xml" src="/wgraph.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 %}