From 9f6a9f1350ceb5e8d0c172a99fb72b51bf12b8ef Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 16 Sep 2018 21:56:55 +0200 Subject: [PATCH] removed tooltip text in workout stats --- rowers/templates/workoutstats.html | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/rowers/templates/workoutstats.html b/rowers/templates/workoutstats.html index 4c5f8644..ac867eff 100644 --- a/rowers/templates/workoutstats.html +++ b/rowers/templates/workoutstats.html @@ -44,14 +44,7 @@ -
- -

rPower: Equivalent steady state power for the duration of the workout.

-

Heart Rate Drift: Comparing heart rate normalized for average power for the first and second half of the workout

-

TRIMP: TRaining IMPact. A way to combine duration and heart rate into a single number.

-

rScore: Score based on rPower and workout duration to estimate training effect

-

rScore (HR): Score based on heart rate, designed to give values comparable to rScore. Used instead of rScore for workouts without power data.

-
+
{% if otherstats %}

Workout Metrics

@@ -74,6 +67,14 @@
+
+

rPower: Equivalent steady state power for the duration of the workout.

+

Heart Rate Drift: Comparing heart rate normalized for average power for the first and second half of the workout

+

TRIMP: TRaining IMPact. A way to combine duration and heart rate into a single number.

+

rScore: Score based on rPower and workout duration to estimate training effect

+

rScore (HR): Score based on heart rate, designed to give values comparable to rScore. Used instead of rScore for workouts without power data.

+
+ {% endif %}
@@ -113,7 +114,7 @@ {% endif %}
-
+
{% if cordict %}

Correlation matrix

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 %}

{{ value|floatformat:-1 }}
{% elif value < -0.5 %} -
{{ value|floatformat:-1 }}
+
{{ value|floatformat:-1 }}
{% elif value < -0.1 %}
{{ value|floatformat:-1 }}
- {% else %} -   - {% endif %} + {% else %} +   + {% endif %} {% endfor %} @@ -152,7 +153,7 @@ {% endif %} -
+ {% endblock %}