bug fix fastest distance race
This commit is contained in:
@@ -82,7 +82,7 @@
|
||||
</a>
|
||||
|
||||
<p>
|
||||
BETA: Box Chart Statistics of stroke metrics over a date range
|
||||
Box Chart Statistics of stroke metrics over a date range
|
||||
</p>
|
||||
</li>
|
||||
<li class="rounder">
|
||||
|
||||
@@ -24,6 +24,10 @@
|
||||
<form id="race_submit_form"
|
||||
method="post">
|
||||
<p>Select one of the following workouts that you rowed within the challenge window</p>
|
||||
<p>
|
||||
{% csrf_token %}
|
||||
<input type="submit" value="Submit">
|
||||
</p>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
{% for field in w_form.hidden_fields %}
|
||||
@@ -37,10 +41,6 @@
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</table>
|
||||
<p>
|
||||
{% csrf_token %}
|
||||
<input type="submit" value="Submit">
|
||||
</p>
|
||||
</li>
|
||||
<li class="grid_4">
|
||||
<p>
|
||||
|
||||
@@ -255,7 +255,15 @@
|
||||
<td>{{ result.points|sigdig:4 }}</td>
|
||||
{% endif %}
|
||||
<td>
|
||||
{% if race.sessiontype == 'race' %}
|
||||
<a title="Details" href="/rowers/workout/{{ result.workoutid|encode }}/view/entry/{{ result.id }}/">
|
||||
{% elif race.sessiontype == 'fastest_time' %}
|
||||
<a title="Details" href="/rowers/workout/{{ result.workoutid|encode }}/view/entry/{{ result.id }}/nocourse/">
|
||||
{% elif race.sessiontype == 'fastest_distance' %}
|
||||
<a title="Details" href="/rowers/workout/{{ result.workoutid|encode }}/view/entry/{{ result.id }}/nocourse/">
|
||||
{% else %}
|
||||
<a title="Details" href="/rowers/workout/{{ result.workoutid|encode }}/view/entry/{{ result.id }}/">
|
||||
{% endif %}
|
||||
<i class="fas fa-search-plus fa-fw"></i></a>
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Reference in New Issue
Block a user