{% extends "base.html" %} {% load url %} {% load humanize %} {% 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 %} {% if not object.phase.public %}
The phase that this submission belongs to, is no longer active.
{% endif %}

Submission {{ object.pk }}

Challenge
{{ object.phase.challenge.short_name }}
Phase
{{ object.phase.title }}
Creator
{{ object.creator }}
{% if object.algorithm_image %}
Algorithm
Container for {{ object.algorithm_image.algorithm }} uploaded by {{ object.algorithm_image.creator }} {{ object.algorithm_image.created|naturaltime }}
{% endif %}

Evaluations for this submission

{% for evaluation in object.evaluation_set.all %} {% endfor %}
Created Updated Evaluation Method Status Result
{{ evaluation.created }} {{ evaluation.modified }} {{ evaluation.id }} {{ evaluation.method.id }} {% if evaluation.animate %} {% endif %} {{ evaluation.get_status_display }} {% if evaluation.status == evaluation.SUCCESS %} Result {% endif %}
{% if "change_challenge" in challenge_perms %}
Submission Admin
Comment
{% if object.comment %} {{ object.comment }} {% else %} No comment provided. {% endif %}
Supplementary URL ({{ object.phase.supplementary_url_label }})
{% if object.supplementary_url %} {{ object.supplementary_url }} {% else %} No supplementary URL provided. {% endif %}
Supplementary File ({{ object.phase.supplementary_file_label }})
{% if object.supplementary_file %} {{ object.supplementary_file.name }} {% else %} No supplementary file provided. {% endif %}
Submission File
{% if object.predictions_file %} {{ object.predictions_file.name }} {% else %} No submission file provided. {% endif %}
{% if not object.is_evaluated_with_active_image %}

Re-Evaluate Submission with Active Method

This submission has not been evaluated with the active evaluation method for this phase. {% if challenge.available_compute_euro_millicents <= 0 %} However, an evaluation cannot be created as this challenge has exceeded its budget. {% endif %}

{% if challenge.available_compute_euro_millicents > 0 %}
{% csrf_token %}
{% endif %}
{% endif %}
{% endif %} {% endblock %} {% block script %} {{ block.super }} {% endblock %}