Skip to content

Commit

Permalink
Merge pull request #150 from jovandeginste/paused-table
Browse files Browse the repository at this point in the history
Move the time paused together with the total time
  • Loading branch information
jovandeginste committed May 26, 2024
2 parents ac44e6a + 8b93fc0 commit dfa9598
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions views/partials/workout_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
{{ .Data.TotalDuration | HumanDuration }}
</td>
</tr>
<tr>
<td class="{{ IconFor `pause` }}"></td>
<th>{{ i18n "Time paused" }}</th>
<td class="whitespace-nowrap font-mono">
{{ .Data.PauseDuration | HumanDuration }}
</td>
</tr>
<tr>
<td class="{{ IconFor `distance` }}"></td>
<th>{{ i18n "Total distance" }}</th>
Expand Down Expand Up @@ -77,13 +84,6 @@
{{ .Data.MaxSpeed | HumanSpeed }} {{ CurrentUser.PreferredUnits.Speed }}
</td>
</tr>
<tr>
<td class="{{ IconFor `pause` }}"></td>
<th>{{ i18n "Time paused" }}</th>
<td class="whitespace-nowrap font-mono">
{{ .Data.PauseDuration | HumanDuration }}
</td>
</tr>
<tr>
<td class="{{ IconFor `elevation` }}"></td>
<th>{{ i18n "Min elevation" }}</th>
Expand Down

0 comments on commit dfa9598

Please sign in to comment.