31 lines
710 B
HTML
31 lines
710 B
HTML
{% extends "cvkbrnobase.html" %}
|
|
{% load i18n %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}{% trans "Create Boat" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="workouts" class="grid_6 alpha">
|
|
|
|
{% if form.errors %}
|
|
<p style="color: red;">
|
|
Please correct the error{{ form.errors|pluralize }} below.
|
|
</p>
|
|
{% endif %}
|
|
|
|
<h1>{% trans "Create Boat" %}</h1>
|
|
|
|
|
|
<form enctype="multipart/form-data" action="" method="post">
|
|
<table width=100%>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<div id="formbutton" class="grid_1 prefix_4 suffix_1">
|
|
<input type="submit" value="Save">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %} |