{% extends "challenge.html" %} {% load url from grandchallenge_tags %} {% load get_obj_perms from guardian_tags %} {% load user_profile_link from profiles %} {% block content %}
Teams are groups of users who compete together in a challenge.
{% if users_teams %}You are already a member of the following teams:
You must leave these teams before you can join another team. The teams competing in {{ challenge.short_name }} are:
{% else %}Create a new team for {{ challenge.short_name }}
Or, you can request to join an existing team:
{% endif %}Team Name | Team Members | {% if not users_teams %}Join Team | {% endif %}
---|---|---|
{{ team.name }} |
{% for tm in team.teammember_set.all %}
{{ tm.user|user_profile_link }} {% endfor %} |
{% if not users_teams %}
{% endif %} |