Getting A better Log Entry Experience, and history setup
This commit is contained in:
parent
98a86ca6a8
commit
5d3396c333
15 changed files with 428 additions and 140 deletions
45
client/General/Workouts/Workoutdata/workoutdata.html
Normal file
45
client/General/Workouts/Workoutdata/workoutdata.html
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<template name="workoutData">
|
||||
<h1>Workouts</h1>
|
||||
<ul class="collection">
|
||||
<li class="collection-header">Last Workout</li>
|
||||
|
||||
<li class="collection-item">
|
||||
<table class="striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Exercise</th>
|
||||
<th>Weight</th>
|
||||
<th>Sets</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each lastWorkout}}
|
||||
<tr>
|
||||
<td>{{exerciseName}}</td>
|
||||
<td>{{exerciseWeight}}</td>
|
||||
<td>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Sets</th>
|
||||
<th>Reps</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each sets}}
|
||||
<tr>
|
||||
<td>{{setNumber}}</td>
|
||||
<td>{{repCount}}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue