{% extends "challenge.html" %} {% load crispy_forms_tags %} {% load grandchallenge_tags %} {% load guardian_tags %} {% load clean from bleach %} {% block content %}

Submission

{{ challenge.evaluation_config.submission_page_html|clean }}

Create a new submission

{% if "change_challenge" in challenge_perms %}

As an admin for this challenge you can make as many submissions as you like. Challenge participants will be allow to make {{ challenge.evaluation_config.daily_submission_limit }} submission{{ challenge.evaluation_config.daily_submission_limit|pluralize }} per day. You can change the Daily Submission Limit in Evaluation Settings.

{% crispy form %} {% else %} {% if pending_jobs %}

You need to wait until all of your existing submissions have been evaluated before you can make another submission. Click here to see their status.

{% elif remaining_submissions <= 0 %}

You have reached your submission limit for today. You can make another submission in {{ next_submission_at|timeuntil }}.

{% else %}

You can make {{ remaining_submissions }} more submission{{ remaining_submissions|pluralize }} today.

{% crispy form %} {% endif %} {% endif %}

View your submissions

Click here to view your current submissions to this challenge.

{% endblock %}