diff options
author | Karel Kočí <karel.koci@nic.cz> | 2017-08-15 17:57:25 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2017-08-15 17:57:25 +0200 |
commit | 8e8481885d3134e8d994a30fd5254fc6d41df9ea (patch) | |
tree | fefb65fec9f438ee319d1c523ccb8e7417ee215b /foris/templates/ups_pfc8591 | |
parent | 137e9ac603fac87d42a9e383885827a4e769110d (diff) | |
download | turris-ups-pfc8591-8e8481885d3134e8d994a30fd5254fc6d41df9ea.tar.gz turris-ups-pfc8591-8e8481885d3134e8d994a30fd5254fc6d41df9ea.tar.bz2 turris-ups-pfc8591-8e8481885d3134e8d994a30fd5254fc6d41df9ea.zip |
Rename from i2c-collect to more suitable ups-pfc8591v0.2
Diffstat (limited to 'foris/templates/ups_pfc8591')
-rw-r--r-- | foris/templates/ups_pfc8591/ups_pfc8591.tpl | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/foris/templates/ups_pfc8591/ups_pfc8591.tpl b/foris/templates/ups_pfc8591/ups_pfc8591.tpl new file mode 100644 index 0000000..e2ae1ef --- /dev/null +++ b/foris/templates/ups_pfc8591/ups_pfc8591.tpl @@ -0,0 +1,33 @@ + +%rebase("config/base.tpl", **locals()) + +<div id="page-ups-pfc8591" class="config-page"> +%include("_messages.tpl") + <div id="canvas-container"> +%for fld in ["voltage", "light", "temperature", "trimmer"]: + <canvas id="canvas-{{ fld }}"></canvas> +%end + </div> +</div> + + +<script> +var graph_data = { +%for fld in ["voltage", "light", "temperature", "trimmer"]: + "{{ fld }}": [ +% for _, val in enumerate(data[fld]): + {{ val[1] }}, +% end + ], +%end +}; +var graph_labels = { +%for fld in ["voltage", "light", "temperature", "trimmer"]: + "{{ fld }}": [ +% for _, val in enumerate(data[fld]): + "{{ val[0] }}", +% end + ], +%end +}; +</script> |