Private
Public Access
1
0
Files
rowsandall/rowers/templates/analysis.html
Sander Roosendaal e6160ae82e passing tests
2022-10-07 15:43:13 +02:00

155 lines
3.8 KiB
HTML

{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}Rowsandall - Analysis {% endblock %}
{% block main %}
<h1>Analysis</h1>
<p>Functionality to analyze multiple workouts.</p>
<ul class="main-content">
<li class="rounder">
<h2>Performance Manager</h2>
<a href="/rowers/performancemanager/">
<div class="vignet">
<img src="/static/img/PM.jpg"
alt="Performance Manager">
</div>
</a>
<p>
Manage Fitness, Fatigue and Freshness
</p>
</li>
<li class="rounder">
<h2>Critical Power</h2>
<a href="/rowers/user-analysis-select/cp/">
<div class="vignet">
<img src="/static/img/otwcp.png" alt="Critical Power">
</div>
</a>
<p>
Analyse power vs piece duration to make predictions.
</p>
</li>
<li class="rounder">
<h2>Compare Workouts</h2>
{% if team %}
<a href="/rowers/user-analysis-select/compare/team/{{ team.id }}/">
{% else %}
<a href="/rowers/user-analysis-select/compare/team/0/">
{% endif %}
<div class="vignet">
<img src="/static/img/workoutcompare.png"
alt="Compare Workouts">
</div>
</a>
<p>
Compare two or more of your workouts
</p>
</li>
<li class="rounder">
<h2>Stroke Analysis</h2>
<a href="/rowers/user-analysis-select/flexall/">
<div class="vignet">
<img src="/static/img/strokeanalysis.png"
alt="Stroke Analysis">
</div>
</a>
<p>
Plot all strokes in a date range and analyze several parameters (Power, Pace, SPM, Heart Rate).
</p>
</li>
<li class="rounder">
<h2>Statistics</h2>
<a href="/rowers/user-analysis-select/stats/">
<div class="vignet">
<img src="/static/img/statistics.PNG" alt="Statistics">
</div>
</a>
<p>
Statistics of stroke metrics over a date range
</p>
</li>
<li class="rounder">
<h2>Box Chart</h2>
<a href="/rowers/user-analysis-select/boxplot/">
<div class="vignet">
<img src="/static/img/boxplot.png" alt="Box Chart">
</div>
</a>
<p>
Box Chart Statistics of stroke metrics over a date range
</p>
</li>
<li class="rounder">
<h2>Trend Flex</h2>
<a href="/rowers/user-analysis-select/trendflex/">
<div class="vignet">
<img src="/static/img/trendflex.png" alt="Trend Flex">
</div>
</a>
<p>
Select workouts and make X-Y charts of averages over various metrics
</p>
</li>
<li class="rounder">
<h2>Marker Workouts</h2>
<a href="/rowers/goldmedalscores/">
<div class="vignet">
<img src="/static/img/goldmedalscores.png" alt="Gold Medal Scores">
</div>
</a>
<p>
See which of your workouts are markers of your fitness, and how your scores
evolve over time.
</p>
</li>
<li class="rounder">
<h2>Training Zones</h2>
<a href="/rowers/trainingzones/">
<div class="vignet">
<img src="/static/img/zones2.png" alt="Zones">
</div>
</a>
<p>
See in what training zone you have been training in the past weeks and months.
</p>
</li>
<li class="rounder">
<h2>Alerts</h2>
<a href="/rowers/alerts/">
<div class="vignet">
<img src="/static/img/alert2.png" alt="Alerts">
</div>
</a>
<p>
Need to monitor a metric? Set up automatic alerting and see the reports for your workouts.
</p>
</li>
<li class="rounder">
<h2>Histogram</h2>
<a href="/rowers/user-analysis-select/histo/">
<div class="vignet">
<img src="/static/img/histogram.png" alt="Power Histogram">
</div>
</a>
<p>
Plot a histogram chart of one metric for all your strokes over a date range.
</p>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_analytics.html' %}
{% endblock %}