{% extends "challenge.html" %} {% load evaluation_extras %} {% load guardian_tags %} {% load user_profile_link from profiles %} {% load humanize %} {% load url from grandchallenge_tags %} {% block content %}

Result

User
{{ object.job.submission.creator|user_profile_link }}
Challenge
{{ object.job.submission.challenge.short_name }}
Submission created
{{ object.job.submission.created }}
Result created
{{ object.created }}
{% if object.published and object.rank > 0 %}
Position on leaderboard
{{ object.rank }}
{% endif %}
Visibility
{% if object.published %} This result is published on the leaderboard {% if "change_challenge" in challenge_perms %}
{% csrf_token %}
{% endif %} {% else %} This result is not published on the leaderboard {% if "change_challenge" in challenge_perms %}
{% csrf_token %}
{% endif %} {% endif %}
{% if "change_challenge" in challenge_perms %}
Submission File
Download the submission file for this result
{% endif %} {% if challenge.evaluation_config.show_supplementary_file_link %}
{{ challenge.evaluation_config.supplementary_file_label }}:
{% if object.job.submission.supplementary_file %} {% endif %}
{% endif %} {% if challenge.evaluation_config.show_publication_url %}
Publication:
{% if object.job.submission.publication_url %} {% endif %}
{% endif %} {% if request.user.is_staff and object.job.submission.annotationset %}
Predictions
View Predictions
{% endif %}

Metrics

{{ object.metrics|json_dumps }}
{% endblock %}