{% extends 'base.html' %} {% load url from grandchallenge_tags %} {% load user_profile_link from profiles %} {% block title %}Your Challenges - {{ block.super }}{% endblock %} {% block content %}

Your Challenges

This is a list of the challenges that you are participating in on {{ challenge.short_name }}.

{% for challenge in object_list %} {% if challenge.use_evaluation and challenge.method_set.all %} {% endfor %}
Name Created Admins Description Automated Evaluation
{% firstof challenge.title challenge.short_name %} {% if challenge.hidden %} {% endif %} {{ challenge.created }} {% for user in challenge.get_admins %} {{ user|user_profile_link }}
{% endfor %}
{{ challenge.description }} Submissions: {{ challenge.submission_set.all|length }} {% else %} {% endif %}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}