96 lines
2.6 KiB
HTML
96 lines
2.6 KiB
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}View Comparison {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<script type="text/javascript" src="/static/js/bokeh-0.12.3.min.js"></script>
|
|
<script async="true" type="text/javascript">
|
|
Bokeh.set_log_level("info");
|
|
</script>
|
|
|
|
<div id="id_script">
|
|
|
|
</div>
|
|
|
|
<script>
|
|
// Set things up to resize the plot on a window resize. You can play with
|
|
// the arguments of resize_width_height() to change the plot's behavior.
|
|
var plot_resize_setup = function () {
|
|
var plotid = Object.keys(Bokeh.index)[0]; // assume we have just one plot
|
|
var plot = Bokeh.index[plotid];
|
|
var plotresizer = function() {
|
|
// arguments: use width, use height, maintain aspect ratio
|
|
plot.resize_width_height(true, false, false);
|
|
};
|
|
window.addEventListener('resize', plotresizer);
|
|
plotresizer();
|
|
};
|
|
window.addEventListener('load', plot_resize_setup);
|
|
</script>
|
|
<style>
|
|
/* Need this to get the page in "desktop mode"; not having an infinite height.*/
|
|
html, body {height: 100%; margin:5px;}
|
|
</style>
|
|
|
|
|
|
<div class="grid_12 alpha">
|
|
<h1>Multi Flex Chart</h1>
|
|
<div id="workouts" class="grid_8 alpha">
|
|
<div id="id_chart" class="grid_8 alpha flexplot">
|
|
{{ the_div|safe }}
|
|
</div>
|
|
</div>
|
|
<div class="grid_4 omega">
|
|
<div class="grid_4">
|
|
<form enctype="multipart/form-data" action="/rowers/user-multiflex/{{ userid }}" method="post">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ chartform.as_table }}
|
|
</table>
|
|
<div class="grid_1 prefix_2 suffix_1">
|
|
<p>
|
|
<input name='workoutselectform' class="button green" type="submit" value="Submit">
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="grid_4">
|
|
<p>
|
|
You can use the form above to change the metric or filter the data.
|
|
Set Min SPM and Max SPM to select only strokes in a certain range of
|
|
stroke rates.
|
|
Set Work per Stroke to a minimum value to remove "paddle" strokes or turns.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script type='text/javascript'
|
|
src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js'>
|
|
</script>
|
|
|
|
<script>
|
|
$(function($) {
|
|
console.log('loading script');
|
|
$.getJSON(window.location.protocol + '//'+window.location.host + '/rowers/user-multiflex-data', function(json) {
|
|
var counter=0;
|
|
var script = json.script;
|
|
var div = json.div;
|
|
$("#id_sitready").remove();
|
|
$("#id_chart").append(div);
|
|
console.log(div);
|
|
$("#id_script").append("<script>"+script+"</s"+"cript>");
|
|
|
|
});
|
|
});
|
|
</script>
|
|
|
|
{% endblock %}
|