{% extends base_template %} {% load evaluation_extras %} {% load user_profile_link from profiles %} {% load guardian_tags %} {% load url %} {% load static %} {% block breadcrumbs %}
{% endblock %} {% block content %}| Submission ID | Evaluation ID | Submission Created | Evaluation Updated | {% if "change_challenge" in challenge_perms %}User | {% endif %}Status | {% if "change_challenge" in challenge_perms %}Hide/Publish | Algorithm Results | {% endif %}Output | Position | Comment |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ evaluation.submission.id }} | {{ evaluation.id }} | {{ evaluation.submission.created }} | {{ evaluation.modified }} | {% if "change_challenge" in challenge_perms %}{{ evaluation.submission.creator|user_profile_link }} {% if challenge.use_teams %} {% with user_teams|get_key:evaluation.submission.creator.username as team %} {% if team %} ({{ team.0 }}) {% endif %} {% endwith %} {% endif %} | {% endif %}{% if evaluation.animate %} {% endif %} {{ evaluation.get_status_display }} | {% if "change_challenge" in challenge_perms %}{% if evaluation.status == evaluation.SUCCESS %} {% endif %} | {% if evaluation.submission.phase.submission_kind == evaluation.submission.phase.SubmissionKindChoices.ALGORITHM %} {{ evaluation.submission.algorithm_image.algorithm.title }} {% endif %} | {% endif %}{% if evaluation.status == evaluation.SUCCESS %} {% if evaluation.published %} Result {% else %} Submission is under review by the challenge admins. {% endif %} {% elif evaluation.status == evaluation.FAILURE %} {% firstof evaluation.error_message evaluation.get_status_display %} {% endif %} | {% if evaluation.rank > 0 %} {{ evaluation.rank }} {% endif %} {% if evaluation.submission.supplementary_file %} {% endif %} | {{ evaluation.submission.comment }} |