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

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

{% endif %}

{% trans "Going Rowing" %}

{{ form.as_table }}

 

1: {{ user.first_name }} {{ user.last_name }}

{% csrf_token %}

{% trans "Reservations" %}

{% for outing in reservations %} {% if user == outing.rower.user or thisclub_admin %} {% else %} {% endfor %}
{% trans "Boat" %} {% trans "Departure time" %} {% trans "Reserved by" %} {% trans "Delete" %}
{{ outing.boat.boatname }} {{ outing.starttime }} {{ outing.rower.user.first_name }} {{ outing.rower.user.last_name }} D 
{% if damagedboats %}

{% trans "Temporarily Unavailable" %}

{% for boat in damagedboats %} {% endfor %}
{{ boat.boatname }}
{% endif %} {% if races %}

{% trans "Upcoming Races" %}

{% for race in races %} {% endfor %}
{% trans "Name" %} {% trans "Start Date" %} {% trans "End Date" %}
{{ race.name }} {{ race.startdatetime }} {{ race.enddatetime }}
{% endif %}
{% if plannedwork %}

{% trans "Upcoming Members Work" %}

{% for w in plannedwork %} {% if member in w.worker.all %} {% else %} {% endif %} {% endfor %}
{% trans "Name" %} {% trans "Date" %} {% trans "Action" %}
{{ w.name }} {{ w.date }}{% trans "Remove me" %}{% trans "Add me" %}
{% endif %}
{% endlocaltime %} {% endblock %}