{% load filters %}
avg | {{ activity.trace_file.avg_cadence }} |
max | {{ activity.trace_file.max_cadence }} |
avg | {{ activity.trace_file.avg_speed | m_per_s_to_km_per_h }} km/h |
max | {{ activity.trace_file.max_speed | m_per_s_to_km_per_h }} km/h |
avg | {{ activity.trace_file.avg_speed | speed_to_pace }} min/km |
high | {{ activity.trace_file.max_speed | speed_to_pace }} min/km |
Aerobic | {{ activity.trace_file.aerobic_training_effect }} |
Anaerobic | {{ activity.trace_file.anaerobic_training_effect }} |
min | {{ activity.trace_file.min_heart_rate }} |
avg | {{ activity.trace_file.avg_heart_rate }} |
max | {{ activity.trace_file.max_heart_rate }} |
min | {{ activity.trace_file.min_temperature }} °C |
avg | {{ activity.trace_file.avg_temperature }} °C |
max | {{ activity.trace_file.max_temperature }} °C |
# | Time | Distance | Pace | Label | |
---|---|---|---|---|---|
{{ forloop.counter }} | {{ lap.elapsed_time|h_m_s }} | {{ lap.distance|to_int }} | {{ lap.speed|speed_to_pace }} | {% if lap.label %}{{ lap.label }} | {% else %}- | {% endif %}