diff options
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 |
