{% import "icons.html" as icons %} {% import "card.html" as card %} {% extends "layout.html" %} {% block content %}
{% call card.root() %} {% call card.header() %} {% call card.title() %} Failed to join {{ team.name }} {{ icons.delete_x(class="text-destructive inline-block h-full align-text-top ml-1") }} {% endcall %} {% call card.description() %} You are unable to join the team because it is already full. {% endcall %} {% endcall %} {% call card.content() %}

Members

{{ team.name }}'s team members

{% with num_members=team.users | length %}

{{ t('team-members-limited', count=num_members, limit=max_players) }}

{% endwith %}

A member of the team must leave before you can join.

{% endcall %} {% endcall %}
{% endblock %}