48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
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_6 alpha">
|
|
<h1>Heart Rate Bands</h1>
|
|
|
|
<form enctype="multipart/form-data" action="" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<div class="grid_2 prefix_2 suffix_2">
|
|
<input class="button green" type="submit" value="Save">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="grid_6 omega">
|
|
<h1>Functional Threshold Power</h1>
|
|
<p>
|
|
<form enctype="multipart/form-data" action="" method="post">
|
|
<table>
|
|
{{ powerform.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<div class="grid_2 prefix_2 suffix_2">
|
|
<input class="button green" type="submit" value="Save">
|
|
</form>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="grid_6 prefix_6 alpha">
|
|
<div class="grid_2 suffix_4 alpha">
|
|
<a class="button gray small" href="/rowers/me/favoritecharts">Manage Favorite Charts</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|