graph.html 989 B

12345678910111213141516171819202122232425262728293031
  1. {% extends "admin/stats/form.html" %}
  2. {% import "_forms.html" as form_theme with context %}
  3. {% from "admin/macros.html" import page_title %}
  4. {% from "admin/stats/plot.html" import draw_plot_tooltips, draw_plot with context %}
  5. {% block title %}{{ page_title(title=title, parent=_('Stats')) }}{% endblock %}
  6. {% block action %}
  7. <h2>{{ title }} <small>{% trans count=graph.total, total=graph.total|intcomma -%}One item found
  8. {%- pluralize -%}
  9. {{ total }} items found
  10. {%- endtrans %}</small></h2>
  11. <div class="graph">
  12. <canvas id="graph-canvas" height="250px"></canvas>
  13. {{ draw_plot_tooltips('graph-canvas', graph) }}
  14. <div class="timeline">
  15. <div class="pull-left">{{ graph.start|date }}</div>
  16. <div class="pull-right">{{ graph.end|date }}</div>
  17. </div>
  18. </div>
  19. <hr>
  20. {{ super() }}
  21. {% endblock %}
  22. {% block javascripts %}
  23. <script type="text/javascript">
  24. {{ draw_plot('draw_graph', 'graph-canvas', graph.max, graph.stat) }}
  25. </script>
  26. {% endblock %}