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

Registration Requests for {{ challenge.short_name }}

{% for regrequest in object_list %} {% endfor %}
Created Updated Username Name Email Affiliation Status Accept / Reject
{{ regrequest.created }} {{ regrequest.changed }} {{ regrequest.user|user_profile_link }} {{ regrequest.user.get_full_name }} {{ regrequest.user.email }} {{ regrequest.user_affiliation }} {% if regrequest.status == regrequest.PENDING %} {% elif regrequest.status == regrequest.ACCEPTED %} {% elif regrequest.status == regrequest.REJECTED %} {% endif %} {% if regrequest.status != regrequest.ACCEPTED %}
{% csrf_token %}
{% endif %} {% if regrequest.status != regrequest.REJECTED %}
{% csrf_token %}
{% endif %}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}