{% extends "cvkbrnobase.html" %} {% load i18n %} {% load staticfiles %} {% load rowerfilters %} {% block title %}{% trans "View Outing" %}{% endblock %} {% block content %}

{% trans "Delete" %}

{% if form.errors %}

Please correct the error{{ form.errors|pluralize }} below.

{% endif %}

{% trans "Edit Boat" %}

{{ form.as_table }}
{% csrf_token %}

{% trans "Recent Outings with this boat" %}

 

{% for outing in theoutings %} {% endfor %}
{% trans "Date" %} {% trans "Rower" %} {% trans "Status" %}
{{ outing.starttime }} {{ outing.rower.user.first_name }} {{ outing.rower.user.last_name }} {% trans outing.status %}
{% endblock %}