fixes
This commit is contained in:
@@ -87,6 +87,38 @@
|
||||
</pre>
|
||||
</p>
|
||||
</li>
|
||||
<li class="grid_2">
|
||||
<h1>Detailed Summary Edit</h1>
|
||||
<p>This is still experimental and there are known bugs. Use at your own risk. Nothing is stored permanently until you hit Save on the summary above. You can use the restore original button to restore the original values.</p>
|
||||
<form enctype="multipart/form-data" action="/rowers/workout/{{ workout.id }}/editintervals" method="post">
|
||||
<table width=100%>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th><th>Time</th><th>Distance</th><th>Type</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for i in nrintervals|times %}
|
||||
<tr>
|
||||
<td>{{ i }} </td>
|
||||
<td>
|
||||
{% get_field_id i "intervalt_" detailform %}
|
||||
</td>
|
||||
<td>
|
||||
{% get_field_id i "intervald_" detailform %}
|
||||
</td>
|
||||
<td>
|
||||
{% get_field_id i "type_" detailform %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="nrintervals" value={{ nrintervals }}>
|
||||
<input class="button green" type="submit" value="Update">
|
||||
</form>
|
||||
</li>
|
||||
<li class="grid_4">
|
||||
<h1 id="howto">Interval Shorthand How-To</h1>
|
||||
<p>This is a quick way to enter the intervals using a special mini-language.</p>
|
||||
|
||||
Reference in New Issue
Block a user