{% extends "domain_base.html" %} {% block domain_content %}

{{ _('Teams') }}

{{ _('A team groups 2-3 students within a group. Teams are organizational: each student still submits and is graded individually.') }}

{% if teams.length %}
{%- for t in teams -%} {%- endfor -%}
{{ _('Team') }} {{ _('Group') }} {{ _('Members') }} (UID)
{{ t.name }} {{ t.group }} {{ t.uids.join(', ') }}
{% endif %}

{{ _('Create or update team') }}

{{ _('Between 2 and 3 members, comma-separated UIDs.') }}
{% endblock %}