diff --git a/symposion_project/templates/teams/team_detail.html b/symposion_project/templates/teams/team_detail.html index 92d4d2e1eaea542b17b7afbea5ff565161eb31c9..a040822dcb343ab86c81c1391f8154c66f746617 100644 --- a/symposion_project/templates/teams/team_detail.html +++ b/symposion_project/templates/teams/team_detail.html @@ -28,4 +28,27 @@ {% endif %} + {% if user.is_staff or state == "manager" %} + {% if team.members %} +

Team Members

+ + {% for membership in team.members %} + + + + + {% endfor %} +
{{ membership.user.email }}{{ membership.state }}
+ {% endif %} + {% if team.applicants and team.access == "application" %} +

Applicants

+ + {% for membership in team.applicants %} + + + + {% endfor %} +
{{ membership.user.email }}
+ {% endif %} + {% endif %} {% endblock %}