Files
runningPlans/src/app/calendar/calendar.component.html

30 lines
907 B
HTML
Raw Normal View History

<div class="container">
<table class="noselect">
<tr>
<th>Week</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
<th>Total Milage</th>
</tr>
2026-03-26 16:49:50 -05:00
@for (planWeek of examplePlan.planDetials; track $index) {
<tr>
<td>
2026-03-26 16:49:50 -05:00
<div>Week {{planWeek.week}}</div>
</td>
2026-03-26 16:49:50 -05:00
@for (workout of planWeek.workouts; track $index) {
<td class="hoverOverWorkout">
2026-03-26 16:49:50 -05:00
<div>{{workout.type}}</div>
<div>{{workout.totalDistance == 0 ? '' : workout.totalDistance + ' miles'}}</div>
<div>{{workout.description}}</div>
</td>
}
<td>43</td>
</tr>
}
</table>
</div>