summaryrefslogtreecommitdiff
path: root/app/templates
diff options
context:
space:
mode:
authorFivePixels <o5pxels@gmail.com>2022-05-08 18:04:56 -0500
committerFivePixels <o5pxels@gmail.com>2022-05-08 18:04:56 -0500
commitee628b5e2d023ccbca45936f6078ff652a80279f (patch)
treecdaaaabdd495823d8f5c92c6729d23e89fb7026c /app/templates
parent39b1035b0ab1a1437de8b45a971525d18a69adae (diff)
downloadStrengthy-ee628b5e2d023ccbca45936f6078ff652a80279f.tar.xz
Strengthy-ee628b5e2d023ccbca45936f6078ff652a80279f.zip
Working on resolving bugs
Diffstat (limited to 'app/templates')
-rw-r--r--app/templates/workout/record.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/templates/workout/record.html b/app/templates/workout/record.html
index 8c8eaf2..c7152cd 100644
--- a/app/templates/workout/record.html
+++ b/app/templates/workout/record.html
@@ -30,13 +30,13 @@
<th>{{ loop.index }}</th>
{% if exercise.type == 'time' %}
<td>
- <div class='timer-{{ outer_loop.index }}'style="display:flex;align-items:center;font-size:1em;">
- <button type="button" onclick="onClickPausePlayTimer(this)" class="button">
+ <div class='timer' style="display:flex;align-items:center;font-size:1em;">
+ <button id='timer-{{ outer_loop.index }}' type="button" onclick="onClickPausePlayTimer(this)" class="button">
<span class="icon is-small">
<i class="fa fa-play"></i>
</span>
</button>
- <span style='padding-left: 15px;' id='timer-time'>
+ <span style='padding-left: 15px;' id='timer-time-{{ outer_loop.index }}'>
{{ exercise.units }} seconds
</span>
</div>