diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2017-12-07 12:38:55 +0100 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2017-12-07 12:38:55 +0100 |
commit | 322b79babf45b1bff0d219cfbf10524b975075fd (patch) | |
tree | 8c446d180439567f628ee55e635daa54503d3702 /app/Resources/views/default/AllData.html.twig | |
parent | 8ca07955ad080f97713bdd6304cea6117be1bc52 (diff) |
Split all data and data from last week, moved chart to the right side of the page.
Diffstat (limited to 'app/Resources/views/default/AllData.html.twig')
-rw-r--r-- | app/Resources/views/default/AllData.html.twig | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app/Resources/views/default/AllData.html.twig b/app/Resources/views/default/AllData.html.twig new file mode 100644 index 0000000..7bc33af --- /dev/null +++ b/app/Resources/views/default/AllData.html.twig @@ -0,0 +1,35 @@ +{% extends 'base.html.twig' %} + +{% block body %} +<div class="columns"> + <div class="column is-narrow"> +<table class="table"> + <thead class="thead"> + <tr class="tr"> + <th>TimeStamp</th> + <th>Co</th> + <th>No</th> + <th>So</th> + </tr> + </thead> + <tbody class="tbody"> + <tr class="tr"> + {% for table in data %} + <td class="td">{{ table.TimeStamp }}</td> + <td class="td">{{ table.Co }}</td> + <td class="td">{{ table.No }}</td> + <td class="td">{{ table.So }}</td> + </tr> + </tbody> + {% endfor %} +</table> + </div> + <div class="column"> +<canvas id="ctx"></canvas> + </div> +</div> +{% endblock %} +{% block javascripts %} + <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script> + <script src="{{ asset('js/AllDataChart.js') }}"></script +{% endblock %}
\ No newline at end of file |