aboutsummaryrefslogtreecommitdiffstats
path: root/templates/show_entries.html
blob: 1f18d68a88c5a49b9de8e6a3ca586cd06be1ee22 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% 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>
{% endblock %}