PracowniaProgramowania/trening-planer/planowanieTreningu3.html

43 lines
940 B
HTML

{{ define "Index3" }}
<table class="table table-hover">
<caption>Dodawanie ciężaru oraz powtórzeń</caption>
<thead style="background-color: #999999">
<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 . }} <tr>
<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 }}
</tbody>
</table>
</div>
</body>
</html>
{{ end }}