diff options
| author | FivePixels <dylan.bolger00@gmail.com> | 2023-02-19 20:52:42 -0600 |
|---|---|---|
| committer | FivePixels <dylan.bolger00@gmail.com> | 2023-02-19 20:52:42 -0600 |
| commit | 157ddaa68fafb1f8e0bd0d8335517eb402c5988f (patch) | |
| tree | c47f545424b5e7cae811fb5d9448c8399bb9d528 /app/templates/workout/record_select.html | |
| parent | 34988c3d22dd00f5dc7f68ff06ba71d146008257 (diff) | |
| download | Strengthy-main.tar.xz Strengthy-main.zip | |
Add progress page, cleanup timer formattingmain
Diffstat (limited to 'app/templates/workout/record_select.html')
| -rw-r--r-- | app/templates/workout/record_select.html | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/app/templates/workout/record_select.html b/app/templates/workout/record_select.html index e6d88e6..2aaa3f0 100644 --- a/app/templates/workout/record_select.html +++ b/app/templates/workout/record_select.html @@ -13,14 +13,15 @@ <div class="content"> Exercises: {% for exercise in workout.exercises %} - <p>{{ exercise.sets }} x {{ exercise.units }}{% if exercise.type =='time' %} seconds{% endif %} x {{ exercise.name }}</p> + <p>{{ exercise.sets }}{% if exercise.type != 'time' %} x {{ exercise.units }}{% endif %} x {{ + exercise.name }}</p> {% endfor %} - <a class="button is-primary" href="/workout/record/{{ workout.id }}"> - <span class="icon is-small"> - <i class="fa fa-play"></i> - </span> - <span>Start</span> - </a> + <a class="button is-primary" href="/workout/record/{{ workout.id }}"> + <span class="icon is-small"> + <i class="fa fa-play"></i> + </span> + <span>Start</span> + </a> </div> </div> </div> @@ -47,4 +48,4 @@ </div> </div> -{% endblock %} +{% endblock %}
\ No newline at end of file |
