diff options
author | Matt Kohls <mattkohls13@gmail.com> | 2016-04-13 16:53:51 -0400 |
---|---|---|
committer | Matt Kohls <mattkohls13@gmail.com> | 2016-04-13 16:53:51 -0400 |
commit | 9402cf8ffe972496408ae7542a296fe7266f563e (patch) | |
tree | 4bda2b6ac9203a4c7490d98b3eadfc09f7b05b5e /templates | |
parent | 83da2a713548629fed8268d53793178ea84a81f2 (diff) | |
download | Sensor-Server-9402cf8ffe972496408ae7542a296fe7266f563e.tar.gz Sensor-Server-9402cf8ffe972496408ae7542a296fe7266f563e.tar.bz2 Sensor-Server-9402cf8ffe972496408ae7542a296fe7266f563e.zip |
Added graphs
sensor.py
added routes to draw additional graphs
fixed problem reading datetime from database
show_entries.html
added additional figures for graphs
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_entries.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/show_entries.html b/templates/show_entries.html index 5a9d989..572f360 100644 --- a/templates/show_entries.html +++ b/templates/show_entries.html @@ -1,7 +1,13 @@ {% extends "layout.html" %} {% block body %} <figure> - <embed type="image/svg+xml" src="/wgraph.svg" /> + <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 %} |