{% extends "exams/base.html" %} {% load static %} {% block content %}

{{ title }}

Back to Projects
{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% endif %}
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 %}
Project Settings
{{ form.is_active }}
Inactive projects are hidden from public view
{{ form.is_live }}
Live results are visible to schools
{{ form.upload }}
Allow schools to upload their own results
{{ form.total_schools }} Number of schools participating in this project {% if form.total_schools.errors %}
{{ form.total_schools.errors }}
{% endif %}
Media Files
{{ form.logo }} {% if form.instance.logo %}
Current Logo Current logo
{% endif %} {% if form.logo.errors %}
{{ form.logo.errors }}
{% endif %}
{{ form.header_image }} {% if form.instance.header_image %}
Current Header Current header image
{% endif %} {% if form.header_image.errors %}
{{ form.header_image.errors }}
{% endif %}
Cancel
{% endblock %}