Private
Public Access
1
0
Files
rowsandall/cvkbrno/templates/cvkbrno_outing_closeform.html~
sanderroosendaal 3eed3cc3e7 Uploading files
2016-10-30 17:39:32 +01:00

40 lines
1.1 KiB
HTML

{% extends "cvkbrnobase.html" %}
{% load i18n %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}{% trans "Return from outing" %}
{% endblock %}
{% block content %}
<div id="workouts" class="grid_12 alpha">
{% if form.errors %}
<p style="color: red;">
Please correct the error{{ form.errors|pluralize }} below.
</p>
{% endif %}
<h1>{% trans "Return from outing" %}</h1>
<h2>{{ outing.boat.boatcode }} {{ outing.boat.boatname }}</h2>
<p>{% trans "Please check the boat" %}</p>
<form enctype="multipart/form-data" action="" method="post">
<table width=100%>
<tr>
<th><label for="id_damagecheck">{% trans "Is boat OK?" %}</label></th>
<td><select id="id_damagecheck" name="damagecheck">
<option value="Yes" selected="selected">{% trans 'Yes' %}</option>
<option value="No">{% trans 'No' %}</option>
</select></td>
</tr>
{{ form.as_table }}
</table>
{% csrf_token %}
<div id="formbutton" class="grid_1 prefix_4 suffix_1">
<input type="submit" value="{% trans 'Save' %}">
</div>
</form>
</div>
{% endblock %}