diff options
-rw-r--r-- | fietsboek/templates/profile.jinja2 | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/fietsboek/templates/profile.jinja2 b/fietsboek/templates/profile.jinja2 index 5170109..516cee9 100644 --- a/fietsboek/templates/profile.jinja2 +++ b/fietsboek/templates/profile.jinja2 @@ -9,32 +9,32 @@ {% endif %} <table class="table table-hover table-sm"> - <th scope="row">{{ _("page.details.length") }}</th> - <td id="detailsLength">{{ (total_length / 1000) | round(2) | format_decimal }} km</td> + <th scope="row">{{ _("page.profile.length") }}</th> + <td id="profileLength">{{ (total_length / 1000) | round(2) | format_decimal }} km</td> </tr> <tr> - <th scope="row">{{ _("page.details.uphill") }}</th> - <td id="detailsUphill">{{ total_uphill | round(2) | format_decimal }} m</td> + <th scope="row">{{ _("page.profile.uphill") }}</th> + <td id="profileUphill">{{ total_uphill | round(2) | format_decimal }} m</td> </tr> <tr> - <th scope="row">{{ _("page.details.downhill") }}</th> - <td id="detailsDownhill">{{ total_downhill | round(2) | format_decimal }} m</td> + <th scope="row">{{ _("page.profile.downhill") }}</th> + <td id="profileDownhill">{{ total_downhill | round(2) | format_decimal }} m</td> </tr> <tr> - <th scope="row">{{ _("page.details.moving_time") }}</th> - <td id="detailsMovingTime">{{ total_moving_time }}</td> + <th scope="row">{{ _("page.profile.moving_time") }}</th> + <td id="profileMovingTime">{{ total_moving_time }}</td> </tr> <tr> - <th scope="row">{{ _("page.details.stopped_time") }}</th> - <td id="detailsStoppedTime">{{ total_stopped_time }}</td> + <th scope="row">{{ _("page.profile.stopped_time") }}</th> + <td id="profileStoppedTime">{{ total_stopped_time }}</td> </tr> <tr> - <th scope="row">{{ _("page.details.max_speed") }}</th> - <td id="detailsMaxSpeed">{{ mps_to_kph(max_speed) | round(2) | format_decimal }} km/h</td> + <th scope="row">{{ _("page.profile.max_speed") }}</th> + <td id="profileMaxSpeed">{{ mps_to_kph(max_speed) | round(2) | format_decimal }} km/h</td> </tr> <tr> - <th scope="row">{{ _("page.details.avg_speed") }}</th> - <td id="detailsAvgSpeed">{{ mps_to_kph(avg_speed) | round(2) | format_decimal }} km/h</td> + <th scope="row">{{ _("page.profile.avg_speed") }}</th> + <td id="profileAvgSpeed">{{ mps_to_kph(avg_speed) | round(2) | format_decimal }} km/h</td> </tr> <tr> <th scope="row">{{ _("page.profile.number_of_tracks") }}</th> |