PracowniaProgramowania/trening-planer/planowanieTreningu3.html

103 lines
1.7 KiB
HTML
Raw Normal View History

2019-02-16 22:29:58 +01:00
{{ define "Index3" }}
<table class="table table-hover">
2019-02-21 17:21:04 +01:00
2019-02-16 22:29:58 +01:00
<caption>Dodawanie ciężaru oraz powtórzeń</caption>
<thead style="background-color: #999999">
2019-02-21 17:21:04 +01:00
{{ range . }} {{if eq .Poziom "początkujący"}}
2019-02-16 22:29:58 +01:00
<tr>
<th>Partie</th>
<th>Dodawanie powtórzeń</th>
<th>Co ile dodać powtórzenie</th>
2019-02-21 17:21:04 +01:00
<th>Dodawanie obciążenia</th>
2019-02-16 22:29:58 +01:00
<th>Co ile dodać obciążenie</th>
</tr>
</thead>
<tbody>
2019-02-21 17:21:04 +01:00
{{ range .Zmiany }} <tr>
2019-02-16 22:29:58 +01:00
2019-02-21 17:21:04 +01:00
<td align="center"> {{.Rodzaj}}</td>
<td align="center"> {{.Powtorzenie_dodaj}}</td>
<td align="center"> {{.Co_ile_powtorzenie}}</td>
<td align="center"> {{.Ciezar_dodaj}}</td>
<td align="center"> {{.Co_ile_ciezar}}</td>
</tr>{{ end }}
{{ else }}
<tr>
<th >Ćwiczenie</th>
<th>Partie</th>
<th>Dodawanie powtórzeń</th>
<th>Co ile dodać powtórzenie</th>
<th>Dodawanie obciążenia</th>
<th>Co ile dodać obciążenie</th>
</tr>
</thead>
<tbody>
{{ range .Zmiany }} <tr>
2019-02-16 22:29:58 +01:00
<td align="center"> {{.Nazwa}}</td>
<td align="center"> {{.Rodzaj}}</td>
<td align="center"> {{.Powtorzenie_dodaj}}</td>
<td align="center"> {{.Co_ile_powtorzenie}}</td>
<td align="center"> {{.Ciezar_dodaj}}</td>
<td align="center"> {{.Co_ile_ciezar}}</td>
</tr>{{ end }}
2019-02-21 17:21:04 +01:00
{{ end }}
{{ end }}
2019-02-16 22:29:58 +01:00
</tbody>
</table>
</div>
</body>
</html>
{{ end }}