{% extends "base.html" %} {% load i18n %} {% block content %}

{{ team.name }}

{% trans "Name:" %}
{{ team.name }}
{% trans "Trigram:" %}
{{ team.trigram }}
{% trans "Access code:" %}
{{ team.access_code }}
{% trans "Coachs:" %}
{% for coach in team.coachs.all %} {{ coach }}{% if not forloop.last %},{% endif %} {% empty %} {% trans "any" %} {% endfor %}
{% trans "Participants:" %}
{% for student in team.students.all %} {{ student }}{% if not forloop.last %},{% endif %} {% empty %} {% trans "any" %} {% endfor %}
{% trans "Chosen problem:" %}
{% trans "any" as any %}
{{ team.participation.get_problem_display|default:any }}
{% trans "Grant Animath to publish our video:" %}
{{ team.grant_animath_access_videos|yesno }}
{% trans "Authorizations:" %}
{% for student in team.students.all %} {% if student.photo_authorization %} {{ student }}{% if not forloop.last %},{% endif %} {% else %} {{ student }} ({% trans "Not uploaded yet" %}){% if not forloop.last %},{% endif %} {% endif %} {% endfor %}

{% trans "Access to team participation" %}
{% trans "Update team" as modal_title %} {% trans "Update" as modal_button %} {% url "participation:update_team" pk=team.pk as modal_action %} {% include "base_modal.html" with modal_id="updateTeam" %} {% endblock %} {% block extrajavascript %} {% endblock %}