Private
Public Access
1
0
This commit is contained in:
2024-05-21 08:51:50 +02:00
parent 7733298f5c
commit 59ab7aaae4
10 changed files with 91 additions and 26 deletions

View File

@@ -0,0 +1,22 @@
{% 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>