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

New project

{% if form.non_field_errors %}
Oops! Something went wrong. The project was not created because:
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{{ form.name.errors|striptags }}
{{ form.account.errors|striptags }}
{{ form.application_identifier.errors|striptags }}
{% if form.fields.discipline.choices.queryset %}
{{ form.discipline.errors|striptags }}
{% endif %}
{{ form.start_date.errors|striptags }}
This project has no principal investigators.
{% if allow_document_upload %}
{{ form.project_documents.errors|striptags }}
{% endif %}
{% button type="save" value="Create new project" %}
{% endblock %}