{% extends "pages/challenge_settings_base.html" %} {% load url %} {% load static %} {% load guardian_tags %} {% load user_profile_link from profiles %} {% load naturaldelta %} {% block breadcrumbs %} {% endblock %} {% block content %}

Evaluation Method

{% get_obj_perms request.user for object as "method_perms" %} {% if object.can_execute and "change_method" in method_perms %} Edit this Evaluation Method
{% endif %} {% if object.can_execute and object.is_desired_version %} Active Method for this Phase{% else %} Inactive {% endif %}
ID
{{ object.pk }}
Challenge
{{ object.phase.challenge.short_name }}
Phase
{{ object.phase.title }}
Creator
{{ object.creator|user_profile_link }}
Created
{{ object.created }}
{% if object.image %}
Image
{{ object.image.name }}
Image Size
{{ object.image.size|naturalsize }}
{% endif %} {% if object.image_sha256 %}
Image SHA256
{{ object.image_sha256 }}
{% endif %}
Import Status
{% if object.animate %} {% endif %} {{ object.get_import_status_display }}
{% if object.is_manifest_valid is not None %}
Image Is Valid
{{ object.is_manifest_valid }}
{% endif %} {% if object.status %}
Validation Errors
{{ object.status }}
{% endif %}
Image Can Be Used
{{ object.can_execute }}
Requires Memory
{{ object.requires_memory_gb }} GB
Comment
{{ object.comment }}

Evaluations for this Evaluation Method

{% for evaluation in object.evaluation_set.all %} {% endfor %}
Created Updated Evaluation Submission Status Result
{{ evaluation.created }} {{ evaluation.modified }} {{ evaluation.id }} {{ evaluation.submission.id }} {% if evaluation.animate %} {% endif %} {{ evaluation.get_status_display }} {% if evaluation.status == evaluation.SUCCESS %} Result {% endif %}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}