{% extends 'base.html' %} {% load static %} {% load custom_tags_and_filters %} {% block title %}New reservation{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

Create a new reservation

{% csrf_token %} {% if not user.is_staff %} {% if user.active_project_count == 1 %} {% elif user.active_project_count > 1 %}

Which project is this for?

{% for project in user.active_projects %}
{% endfor %} {% endif %} {% endif %}

When would you like to reserve the {{ item }}?

{% button type="save" value="Create the reservation" %}
{% endblock %}