{% if state %}
{% blocktrans with name=team.name %}You are a {{ state }} of {{ name }}{% endblocktrans %}
{% endif %}
{% if can_join %}
{% endif %}
{% if can_leave %}
{% endif %}
{% if can_apply %}
{% endif %}
{% if team.description %}
{{ team.description }}
{% endif %}
{% if state == "invited" %}
{% trans "You have been invited to join this team. Click join to the right to accept." %}
{% endif %}
{% if user.is_staff or state == "manager" %}
{% if team.managers %}
{% trans "Managers" %}
{% for membership in team.managers %}
{{ membership.user.email }}{% if user == membership.user %} {% trans "you" %}{% endif %} |
|
{% endfor %}
{% endif %}
{% if team.members %}
{% trans "Team Members" %}
{% for membership in team.members %}
{{ membership.user.email }}{% if user == membership.user %} {% trans "you" %}{% endif %} |
|
{% endfor %}
{% endif %}
{% if team.applicants and team.access == "application" %}
{% trans "Applicants" %}
{% for membership in team.applicants %}
{{ membership.user.email }} |
|
{% endfor %}
{% endif %}
{% if team.invitees %}
{% trans "Invitees" %}
{% for membership in team.invitees %}
{{ membership.user.email }} |
{% endfor %}
{% endif %}
{% if invite_form %}
{% endif %}
{% endif %}