{% extends "cvkbrnobase.html" %} {% block content %}
{% if form.errors %}

Your username and password didn't match. Please try again.

{% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}
{% if next %} {% else %} {% endif %}

Boats Out

{% for outing in activeoutings %} {% endfor %}
Boat Departure time
{{ outing.boat.boatname }} {{ outing.starttime }}

Reservations

{% for res in reservations %} {% endfor %}
Boat Departure time Reserved by
{{ res.boat.boatname }} {{ res.starttime }} {{ res.rower.user.first_name }} {{ res.rower.user.last_name }}
{% endblock %}