{% extends "base.html" %} {% load crispy_forms_tags %} {% load url %} {% load guardian_tags %} {% load bleach %} {% load naturaldelta %} {% block breadcrumbs %} {% endblock %} {% block topbar2 %} {% if "change_challenge" in challenge_perms or user_is_participant %} {% include "evaluation/partials/phase_navbar.html" with submission_nav=True %} {% endif %} {% endblock %} {% block content %}

{{ phase.title }} Submission

{% if "change_challenge" in challenge_perms %} {% include "evaluation/partials/phase_closed_warning.html" with phase=phase %} {% endif %} {{ phase.submission_page_html|clean }}

Create a new submission

{% if "change_challenge" in challenge_perms %} {% if request.resolver_match.view_name != "evaluation:submission-create-legacy" %} {% endif %} {% crispy form %} {% else %} {% if has_pending_evaluations %} {% elif not phase.open_for_submissions %} {% elif remaining_submissions == 0 %} {% elif phase.submission_kind == phase.SubmissionKindChoices.ALGORITHM and not form.fields.algorithm_image.queryset.exists %}

Currently, you do not have any Algorithm Image that can be submitted to this phase. Either upload a new Algorithm Image to one of your existing Algorithms, or create a new Algorithm. As soon as your new Algorithm Image is active you can return to this page to submit it to this phase.

Add a new Algorithm {% else %} {% if phase.submissions_close_at %}
Submissions to this phase will automatically close at {{ phase.submissions_close_at }} ({{ TIME_ZONE }}).
{% endif %} {% crispy form %} {% endif %} {% endif %} {% endblock %}