Private
Public Access
1
0

Stats page v2

This commit is contained in:
Sander Roosendaal
2017-02-06 15:07:24 +01:00
parent 38f7a59476
commit fb76710681
4 changed files with 153 additions and 45 deletions

View File

@@ -7,6 +7,10 @@
{% block content %}
<div class="grid_12 alpha">
<h1>Workout Statistics for {{ workout.name }}</h1>
<p>
This is an experimental page which just lists a bunch of statistics for
your workout. This page is under rapid development.
</p>
<div class="grid_2 alpha">
<p>
<a class="button gray small" href="/rowers/workout/{{ workout.id }}/edit">Edit Workout</a>
@@ -37,10 +41,10 @@
<span class="tooltiptext">If your data source allows, this will show or hide strokes taken during rest intervals.</span>
</div>
</div>
<div class="grid_6 alpha">
<div class="grid_4 alpha">
{% if stats %}
{% for key, value in stats.items %}
<h2>{{ key }}</h2>
<h2>{{ value.verbosename }}</h2>
<table width="100%" class="listtable">
<thead>
<tr>
@@ -69,5 +73,45 @@
{% endfor %}
{% endif %}
</div>
<div class="grid_8 omega">
{% if cordict %}
<h2> Correlation table</h2>
<p>This table indicates a positive (+) or negative (-) correlation between two parameters. The strong correlations are indicated with ++ and --.
</p>
<table width="90%" class="cortable">
<thead>
<tr>
<th>&nbsp;</th>
{% for key,value in cordict.items %}
<th class="rotate"><div><span>{{ key }}</span></div></th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for key, thedict in cordict.items %}
<tr>
<th> {{ key }}</th>
{% for key2,value in thedict.items %}
<td>
{% if value > 0.5 %}
<div class="poscor">++</div>
{% elif value > 0.1 %}
<div class="weakposcor">+</div>
{% elif value < -0.5 %}
<div class="negcor">--</div>
{% elif value < -0.1 %}
<div class="weaknegcor">-</div>
{% else %}
&nbsp;
{% endif %}
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
</div>
{% endblock %}