Private
Public Access
1
0

better representation of marker workouts

This commit is contained in:
Sander Roosendaal
2021-01-03 15:57:09 +01:00
parent 254f4eeedb
commit 545cfa0dec
6 changed files with 89 additions and 32 deletions

View File

@@ -113,9 +113,12 @@
make this chart shorter than a few months.
</p>
<p>
Optionally, the chart shows you workouts that represent your best performance for that period.
We automatically detect hard workout segments and tests and compare them to world class
("Gold Medal") standards for your gender, weight and age category.
The bottom chart shows the training impulse of each individual workout. A gray bar
denotes a regular workout. The red bars denote workouts that stand out in terms
of your power/time performance for that period. This is only available for workouts
where Power (Watts) is measured. How well you performed is expressed as a
Gold Medal Score, where 100 means you are as good as the world class
athletes of your gender, weight and age category.
</p>
<p>
For this chart to reflect your fitness and freshness, it is important to have all workouts on
@@ -148,6 +151,37 @@
</p>
</div>
</li>
{% if bestworkouts %}
<h2>Marker Workouts</h2>
<li class="grid_4">
<table width="100%" class="listtable">
<thead>
<tr>
<th>Date</th>
<th>Workout</th>
<th>Gold Medal Score</th>
<th>Duration</th>
</tr>
</thead>
<tbody>
{% for w in bestworkouts %}
<tr>
<td>{{ w.date }}</td>
<td>
<a href="/rowers/workout/{{ w.id|encode }}/">{{ w.name }}
</td>
<td>
{{ w.goldmedalstandard|floatformat:"0" }} %
</td>
<td>
{{ w.goldmedalseconds|secondstotimestring }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</li>
{% endif %}
</ul>