Private
Public Access
1
0
Files
rowsandall/rowers/templates/rower_exportsettings.html
Sander Roosendaal 71c0a6f5ff added export as ride
2017-08-31 16:24:05 +02:00

32 lines
683 B
HTML

{% extends "base.html" %}
{% block title %}Change Rower Export Settings{% endblock %}
{% block content %}
<div class="grid_12 alpha">
<div class="grid_6 suffix_6 alpha">
<p>
<h2>Export Settings</h2>
{% if form.errors %}
<p style="color: red;">
Please correct the error{{ form.errors|pluralize }} below.
</p>
{% endif %}
<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>
</p>
</div>
</div>
</div>
{% endblock %}