34 lines
859 B
HTML
34 lines
859 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_6 alpha">
|
|
<h1>Edit your Parameters</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">
|
|
</div>
|
|
</div>
|
|
<div class="grid_6 omega">
|
|
<h1>Tokens etcetera</h1>
|
|
<p>
|
|
<table>
|
|
<tr>
|
|
<th>Concept2 sync issues? Click:</th><td><a href="/rowers/me/c2refresh/"><img src="/static/img/blueC2logo.png" alt="Concept2 logo" width="140"></a></td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
</div>
|
|
|
|
{% endblock %} |