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

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

{% endif %}

{% trans "Make a reservation" %}

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

{% trans "Reservations" %}

{% for outing in reservations %} {% if user == outing.rower.user or thisclub_admin %} {% else %} {% endfor %}
{% trans "Boat" %} {% trans "Date" %} {% trans "Departure time" %} {% trans "Return time" %} {% trans "Reserved by" %} {% trans "Delete" %}
{{ outing.boat.boatname }} {{ outing.starttime |date:'d/m/y ' }}   {{ outing.starttime |time:'H:i ' }}   {{ outing.endtime |time:'H:i '}}   {{ outing.rower.user.first_name }} {{ outing.rower.user.last_name }} D 
{% endlocaltime %} {% endblock %}