{% extends "base.html" %} {% load url %} {% load profiles %} {% load static %} {% 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 %}

Submissions

{% if not challenge.visible_phases %}
There are no active submission phases for this challenge.
{% endif %}
{% for submission in object_list %} {% endfor %}
Created Phase User Comment Evaluations
{{ submission.created }} {{ submission.phase.title }} {{ submission.creator|user_profile_link }} {{ submission.comment }}
    {% for evaluation in submission.evaluation_set.all %}
  • {% if evaluation.animate %} {% endif %} {{ evaluation.get_status_display }} {% if evaluation.status == evaluation.SUCCESS %} {% if evaluation.published %} Result {% else %} Evaluation is under review by the challenge admins. {% endif %} {% elif evaluation.status == evaluation.FAILURE %} {% firstof evaluation.error_message evaluation.get_status_display %} {% endif %}
  • {% empty %}
  • {% if submission.user_upload and not submission.predictions_file %} Preparing {% endif %}
  • {% endfor %}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}