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

Users

{% endblock %}
{% block tableExtraHeaders %} {% endblock tableExtraHeaders %} {% for user in object_list %} {% block tableExtraBody %} {% endblock tableExtraBody %} {% endfor %}
Username Name Email Institution Department Country Website
{{ user|user_profile_link }} {{ user.get_full_name }} {{ user.email }} {{ user.user_profile.institution }} {{ user.user_profile.department }} {{ user.user_profile.country.name }} {{ user.user_profile.website }}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}