{% 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" %}
{% trans "Reservations" %}
| {% trans "Boat" %} |
{% trans "Departure time" %} |
{% trans "Reserved by" %} |
{% trans "Delete" %}
|
{% for outing in reservations %}
| {{ outing.boat.boatname }} |
{{ outing.starttime }} |
{{ outing.rower.user.first_name }} {{ outing.rower.user.last_name }} |
{% if user == outing.rower.user or thisclub_admin %}
D |
{% else %}
|
{% endfor %}
{% if damagedboats %}
{% trans "Temporarily Unavailable" %}
{% for boat in damagedboats %}
| {{ boat.boatname }} |
{% endfor %}
{% endif %}
{% if races %}
{% trans "Upcoming Races" %}
| {% trans "Name" %} |
{% trans "Start Date" %} |
{% trans "End Date" %} |
{% for race in races %}
| {{ race.name }} |
{{ race.startdatetime }} |
{{ race.enddatetime }} |
{% endfor %}
{% endif %}
{% if plannedwork %}
{% trans "Upcoming Members Work" %}
| {% trans "Name" %} |
{% trans "Date" %} |
{% trans "Action" %} |
{% for w in plannedwork %}
| {{ w.name }} |
{{ w.date }} |
{% if member in w.worker.all %}
{% trans "Remove me" %} |
{% else %}
{% trans "Add me" %} |
{% endif %}
{% endfor %}
{% endif %}
{% endlocaltime %}
{% endblock %}