{% extends 'base.html' %} {% load url from grandchallenge_tags %} {% load user_profile_link from profiles %} {% load humanize %} {% block title %}External Challenges{% endblock %} {% block content %}

External Challenges

{% if request.user.is_staff %}

Add an external challenge

{% endif %}
{% for challenge in object_list %} {% endfor %}
Name Created Updated Creator Description Type Modalities Structures Cases Data Stored? Edit Delete
{{ challenge.short_name }} - {{ challenge.title }} {% if challenge.hidden %} {% endif %} {{ challenge.created }} {{ challenge.modified|naturaltime }} {{ challenge.creator|user_profile_link }} {{ challenge.description }} {% for task_type in challenge.task_types.all %} {{ task_type }}{% if not forloop.last %}, {% endif %} {% endfor %} {% for modality in challenge.modalities.all %} {{ modality }}{% if not forloop.last %}, {% endif %} {% endfor %} {% for structure in challenge.structures.all %} {{ structure }}{% if not forloop.last %}, {% endif %} {% endfor %} {% if challenge.number_of_training_cases %} Training: {{ challenge.number_of_training_cases|intcomma }}
{% endif %} {% if challenge.number_of_test_cases %} Test: {{ challenge.number_of_test_cases|intcomma }} {% endif %}
{% if challenge.data_stored %} Yes {% else %} No {% endif %}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}