Private
Public Access
1
0
Files
rowsandall/rowers/templates/histo_single.html
Sander Roosendaal 38bb113e8d bokeh over https
2019-03-02 16:51:43 +01:00

35 lines
606 B
HTML

{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}View Workout {% endblock %}
{% block main %}
<script src="https://cdn.pydata.org/bokeh/release/bokeh-1.0.4.min.js"></script>
<script async="true" type="text/javascript">
Bokeh.set_log_level("info");
</script>
{{ interactiveplot |safe }}
{% if user.is_authenticated and mayedit %}
<h1>Indoor Rower Power Histogram</h1>
<ul class="main-content">
<li class="grid_4">
{{ the_div|safe }}
</li>
</ul>
{% endif %}
{% endblock %}
{% block sidebar %}
{% include 'menu_workout.html' %}
{% endblock %}