Private
Public Access
1
0

added agegrouprecorords - line 135 in urls.py

This commit is contained in:
Sander Roosendaal
2018-09-28 12:43:34 +02:00
parent da44ededed
commit ad4d7466b0
4 changed files with 41 additions and 44 deletions

View File

@@ -1483,7 +1483,10 @@ def interactive_agegroupcpchart(age,normalized=False):
x_axis_type = 'log' x_axis_type = 'log'
y_axis_type = 'linear' y_axis_type = 'linear'
plot = Figure(plot_width=900,x_axis_type=x_axis_type) TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,hover,resize,crosshair'
plot = Figure(plot_width=900,x_axis_type=x_axis_type,
tools=TOOLS)
plot.sizing_mode = 'scale_width' plot.sizing_mode = 'scale_width'
plot.line('duration','fitpowerfh',source=source, plot.line('duration','fitpowerfh',source=source,
@@ -1665,6 +1668,7 @@ def interactive_agegroup_plot(df,distance=2000,duration=None,
TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,hover,resize,crosshair' TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,hover,resize,crosshair'
plot = Figure(tools=TOOLS,plot_width=900) plot = Figure(tools=TOOLS,plot_width=900)
plot.sizing_mode='scale_width'
plot.circle('age','power',source=source,fill_color='red',size=15, plot.circle('age','power',source=source,fill_color='red',size=15,
legend='World Record') legend='World Record')

View File

@@ -1,52 +1,44 @@
{% extends "base.html" %} {% extends "newbase.html" %}
{% load staticfiles %} {% load staticfiles %}
{% load rowerfilters %} {% load rowerfilters %}
{% block title %}Rowsandall {% endblock %} {% block title %}Rowsandall Age Group Records{% endblock %}
{% block content %} {% block main %}
<script type="text/javascript" src="/static/js/bokeh-0.12.3.min.js"></script> <script type="text/javascript" src="/static/js/bokeh-0.12.3.min.js"></script>
<script async="true" type="text/javascript"> <script async="true" type="text/javascript">
Bokeh.set_log_level("info"); Bokeh.set_log_level("info");
</script> </script>
{{ interactiveplot |safe }} {{ interactiveplot |safe }}
<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 id="workouts" class="grid_12 alpha"> <h1>Interactive Plot</h1>
<ul class="main-content">
<h1>Interactive Plot</h1> <li class="grid_4">
<p>This chart shows the
<p>This chart shows the <a href="http://www.concept2.com/indoor-rowers/racing/records/world">Indoor Rower World Records</a> for your gender and <a href="http://www.concept2.com/indoor-rowers/racing/records/world">
weight class. The red dots are the official records, and hovering Indoor Rower World Records
over them with your mouse shows you the name of the record holder. </a> for your gender and
The blue line is a fit to the data, which is used by rowsandall.com weight class. The red dots are the official records, and hovering
to calculate your performance assessment.</a> over them with your mouse shows you the name of the record holder.
The blue line is a fit to the data, which is used by rowsandall.com
to calculate your performance assessment.
</p>
</li>
<li class="grid_4">
{{ the_div|safe }} {{ the_div|safe }}
</li>
</div> </ul>
{% endblock %} {% endblock %}
{% block sidebar %}
{% include 'menu_analytics.html' %}
{% endblock %}

View File

@@ -12336,7 +12336,7 @@ def agegroupcpview(request,age,normalize=0):
response = render(request,'agegroupcp.html', response = render(request,'agegroupcp.html',
{ {
'active': 'nav-analysis'; 'active': 'nav-analysis',
'interactiveplot':script, 'interactiveplot':script,
'the_div':div, 'the_div':div,
} }
@@ -12375,8 +12375,9 @@ def agegrouprecordview(request,sex='male',weightcategory='hwt',
return render(request, 'agegroupchart.html', return render(request, 'agegroupchart.html',
{ {
'interactiveplot':script, 'interactiveplot':script,
'the_div':div, 'active':'nav-analysis',
'the_div':div,
}) })
# Cloning sessions # Cloning sessions

View File

@@ -397,7 +397,7 @@
padding: 5px; padding: 5px;
} }
@media (max-width: 449px) { @media (max-width: 600px) {
nav a { nav a {
font-size: 0px; font-size: 0px;
} }
@@ -419,6 +419,7 @@
"ad footer"; "ad footer";
} }
}
nav ul { nav ul {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@@ -451,7 +452,6 @@
} }
@media (min-width: 768px) { @media (min-width: 768px) {
.wrapper { .wrapper {
grid-template-columns: 1fr 4fr 1fr; grid-template-columns: 1fr 4fr 1fr;