Private
Public Access
1
0

removed tooltip text in workout stats

This commit is contained in:
Sander Roosendaal
2018-09-16 21:56:55 +02:00
parent 9bac16d6e2
commit 9f6a9f1350

View File

@@ -44,14 +44,7 @@
</div>
</div>
<div class="grid_12 alpha tooltip">
<span class="tooltiptext">
<p>rPower: Equivalent steady state power for the duration of the workout.</p>
<p>Heart Rate Drift: Comparing heart rate normalized for average power for the first and second half of the workout</p>
<p>TRIMP: TRaining IMPact. A way to combine duration and heart rate into a single number.</p>
<p>rScore: Score based on rPower and workout duration to estimate training effect</p>
<p>rScore (HR): Score based on heart rate, designed to give values comparable to rScore. Used instead of rScore for workouts without power data.</p>
</span>
<div class="grid_12">
{% if otherstats %}
<div class="grid_6 alpha">
<h2>Workout Metrics</h2>
@@ -74,6 +67,14 @@
</tbody>
</table>
</div>
<div class="grid_6 omega">
<p>rPower: Equivalent steady state power for the duration of the workout.</p>
<p>Heart Rate Drift: Comparing heart rate normalized for average power for the first and second half of the workout</p>
<p>TRIMP: TRaining IMPact. A way to combine duration and heart rate into a single number.</p>
<p>rScore: Score based on rPower and workout duration to estimate training effect</p>
<p>rScore (HR): Score based on heart rate, designed to give values comparable to rScore. Used instead of rScore for workouts without power data.</p>
</div>
{% endif %}
</div>
@@ -113,7 +114,7 @@
{% endif %}
</div>
<div class="grid_12 alpha">
<div class="grid_12 alpha">
{% if cordict %}
<h2> Correlation matrix</h2>
<p>This matrix indicates a positive (+) or negative (-) correlation between two parameters. The Spearman correlation coefficient has values between +1 and -1. Positive correlation between two metrics means that if one metric increases, the other value is also likely to increase. Negative is the opposite. The further from zero, the higher the likelyhood.
@@ -138,12 +139,12 @@
{% elif value > 0.1 %}
<div class="weakposcor">{{ value|floatformat:-1 }}</div>
{% elif value < -0.5 %}
<div class="negcor">{{ value|floatformat:-1 }}</div>
<div class="negcor">{{ value|floatformat:-1 }}</div>
{% elif value < -0.1 %}
<div class="weaknegcor">{{ value|floatformat:-1 }}</div>
{% else %}
&nbsp;
{% endif %}
{% else %}
&nbsp;
{% endif %}
</td>
{% endfor %}
</tr>
@@ -152,7 +153,7 @@
</table>
{% endif %}
</div>
</div>
{% endblock %}