Private
Public Access
1
0
Files
rowsandall/rowers/templates/panel_empower.html
2024-05-21 08:51:50 +02:00

23 lines
587 B
HTML

{% load rowerfilters %}
{% load tz %}
<ul class="main-content">
<li class="grid_2">
<table width=100%>
<tr>
{% localtime on %}
<th>Seat Number:</th><td>{{ workout.seatnumber}}</td>
{% endlocaltime %}
</tr><tr>
<th>Empower side:</th><td>{{ workout.empowerside }}</td>
</tr><tr>
<th>Boat name:</th><td>{{ workout.boatname }}</td>
</tr><tr>
<th>Oar length:</th><td>{{ workout.oarlength }}</td>
</tr><tr>
<th>Oar inboard:</th><td>{{ workout.inboard }}</td>
</tr>
</table>
</li>
</ul>