Basic Information
{{ form.name }}
{% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.project_code }}
{% if form.project_code.errors %}
{{ form.project_code.errors }}
{% endif %}
{% if form.project_code.help_text %}
{{ form.project_code.help_text }}
{% endif %}
{{ form.academic_level }}
{% if form.academic_level.errors %}
{{ form.academic_level.errors }}
{% endif %}
{{ form.year }}
{% if form.year.errors %}
{{ form.year.errors }}
{% endif %}
{{ form.start_date }}
{% if form.start_date.errors %}
{{ form.start_date.errors }}
{% endif %}
{{ form.end_date }}
{% if form.end_date.errors %}
{{ form.end_date.errors }}
{% endif %}
{{ form.description }}
{% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
{{ form.instructions }}
{% if form.instructions.errors %}
{{ form.instructions.errors }}
{% endif %}