mirror of
https://github.com/bodyrep/DemoApp.git
synced 2026-01-25 14:43:00 +00:00
11 lines
391 B
Plaintext
11 lines
391 B
Plaintext
h3 Recent workouts:
|
|
ul
|
|
- recentworkouts.forEach(function(workout) {
|
|
li
|
|
a.map-link(href="/workouts/" + encodeURIComponent(workout._id))= workout._id
|
|
each element in workout.elements
|
|
li= element.exerciseID.name
|
|
ol
|
|
each split in element.splits
|
|
li Reps: #{split.reps} Weight: #{split.weight}
|
|
- }); |