more additions.
This commit is contained in:
parent
dd7e4a4933
commit
e8649038ad
5 changed files with 82 additions and 33 deletions
19
client/General/Logbook/logbook.html
Normal file
19
client/General/Logbook/logbook.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<template name="logbook">
|
||||
<h1>Logbook</h1>
|
||||
<div class="grid">
|
||||
{{#each workouts}}
|
||||
<div>
|
||||
<article class="clickable" id="{{_id}}">
|
||||
<div class="grid">
|
||||
<div>
|
||||
<h2>{{routineName}}</h2>
|
||||
</div>
|
||||
<div>
|
||||
<h3>{{workoutCount}} {{#if $eq workoutCount 1}}exercise{{else}}exercises{{/if}}</h3>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue