{% extends 'base.html' %} {% load format_tags %} {% block title %}{% if is_new %}Add Project{% else %}Edit {{ project.name }}{% endif %} | FoxFitt{% endblock %} {% block content %}

{% if is_new %}Add Project{% else %}Edit {{ project.name }}{% endif %}

{% if is_new %}All fields except Name are optional. {% else %}Update any section and Save.{% endif %}

{% if form.errors %}
Please fix the errors below. {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% endif %}
{% csrf_token %}
Project Basics
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors|first }}
{% endif %}
{{ form.active }}
{{ form.description }}
Timeline

Optional. Use to record when the project started and expected completion date.

{{ form.start_date }}
{{ form.end_date }}
Supervisors

Tick staff users responsible for this project. A project can have multiple supervisors.

{% for choice in form.supervisors %}
{{ choice.tag }}
{% empty %}

No staff users available to assign. Create users in Django admin first.

{% endfor %}
Cancel
{% endblock %}