{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% load grandchallenge_tags %} {% load user_profile_link from profiles %} {% load workstations %} {% block title %} {{ object.title }} - {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ object.title }}

{{ object.description }}

{% if object.ready %}

Try out this algorithm

{% else %}
Algorithm is not ready to be used yet. Please try again later.
{% endif %}

Jobs for this algorithm

{% for job in object.job_set.all %} {% endfor %}
Created Creator Image Status Result Overlay
{{ job.created }} {{ job.image.origin.creator|user_profile_link }} {{ job.image }} {{ job.get_status_display }} {{ job.result.output }} {% if job.result.images.all %} {% for image in job.result.images.all %} {{ image }} {% endfor %} {% endif %}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}