26 lines
666 B
HTML
26 lines
666 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Change Rower {% endblock %}
|
|
|
|
{% block content %}
|
|
{% if form.errors %}
|
|
<p style="color: red;">
|
|
Please correct the error{{ form.errors|pluralize }} below.
|
|
</p>
|
|
{% endif %}
|
|
<div class="grid_12 alpha">
|
|
<h1>Stroke Data for workout {{ id }}</h1>
|
|
|
|
<form enctype="multipart/form-data" action="/rowers/api/workouts/{{ id }}/strokedata" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<div class="grid_2 prefix_2 suffix_2">
|
|
<input class="button green" type="submit" value="POST">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|