{% extends "pages/challenge_settings_base.html" %} {% load crispy from crispy_forms_tags %} {% load url %} {% block breadcrumbs %} {% endblock %} {# Do not show the footer as this is broken with SummernoteInplaceWidget #} {% block footer %}{% endblock %} {% block content %}

{% if object %}Update {{ object.title }} Phase{% else %}Add a New Phase{% endif %}

{% if not object %}

Use this form to create a new phase for your challenge with a separate evaluation method. For instance, you could have a training and test phase, or have a phase for each task.

{% else %} {% include "evaluation/partials/phase_closed_warning.html" with phase=object %} {% endif %} {% crispy form %} {% endblock %}