{% extends "challenge.html" %} {% load get_obj_perms from guardian_tags %} {% load url from grandchallenge_tags %} {% load user_profile_link from profiles %} {% block content %} {% get_obj_perms user for object as "team_perms" %}

{{ object.name }}

Challenge
{{ object.challenge }}
{% if object.department %}
Department
{{ object.department }}
{% endif %} {% if object.institution %}
Institution
{{ object.institution }}
{% endif %} {% if object.website %}
Website
{{ object.website }}
{% endif %}

Team Members

{% if "change_team" in team_perms or "change_challenge" in challenge_perms %}

Team Owner Settings

Edit Team
{% csrf_token %}
{% endif %} {% if user_team and "change_team" not in team_perms %}

Team Member Settings

{% csrf_token %}
{% endif %} {% endblock %}