{% extends "cvkbrnobase.html" %} {% load i18n %} {% load static %} {% load rowerfilters %} {% load filter %} {% load tz %} {% block title %}{% trans "View Outing" %}{% endblock %} {% block content %} {% localtime on %}
{% if form.errors %}

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

{% endif %}

{% trans "View Outing" %}

{% for otherrower in outing.otherrowers.all %} {% endfor %}
{% trans "Start" %}{{ outing.starttime }}
{% trans "End" %}{{ outing.endtime }}
{% trans "Boat" %}{{ outing.boat.boatname }}
{% trans "Rower" %}{{ outing.rower.user.first_name }} {{ outing.rower.user.last_name }}
{{ forloop.counter|filteriternum }}{{ otherrower.user.first_name}} {{ otherrower.user.last_name }}
{% trans "Status" %}{% trans outing.status %}
{% trans "Distance (km)" %}{{ outing.distance }}
{% trans "Comment" %}{{ outing.comment }}
{% endlocaltime %} {% endblock %}