{% extends "challenge.html" %} {% load url from grandchallenge_tags %} {% block content %}

Method {{ object.pk }}

Challenge
{{ object.challenge.short_name }}
Creator
{{ object.creator }}
Created
{{ object.created }}
Image
{% if object.image %} {{ object.image.name }} {% endif %}
Image SHA256
{{ object.image_sha256 }}
Ready
{{ object.ready }}
Status
{{ object.status }}

Evaluations for this method

{% for job in object.job_set.all %} {% endfor %}
Created Updated Job Submission Status Result
{{ job.created }} {{ job.modified }} {{ job.id }} {{ job.submission.id }} {{ job.get_status_display }} {{ job.result.metrics }}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}