{% extends 'rcallocation/base.html' %} {% load static %} {% block sidebar %} {% with current_sidebar="allocation" %} {{ block.super }} {% endwith %} {% endblock %} {% block css %} {{ block.super }} {% endblock %} {% block js %} {{ block.super }} {% endblock %} {% block main %}
{% block description %}{% endblock description %}

Info: Required fields are marked with an sign.
{% if warnings|length > 0 %} {% include "rcallocation/warnings.html" %} {% elif form.errors %} {% endif %}
{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %}
{% include "rcallocation/field.html" with field=form.project_name %}
{% include "rcallocation/field.html" with field=form.contact_email %}
{% include "rcallocation/field.html" with field=form.project_description %}
{% include "rcallocation/field.html" with field=form.estimated_project_duration %}
{% for error in form.get_for_errors %}
{{ error }}
{% endfor %} {% block quotas %} {% endblock %}

Allocation Classification

{% include "rcallocation/inline_field.html" with field=form.associated_site field2=form.national %} {% include "rcallocation/field.html" with field=form.special_approval %}
{% include "rcallocation/field.html" with field=form.status_explanation %}
{% block submit_buttons %} {% endblock %}
{% endblock %}