{% 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 your team still has other players on it. {% endcall %} {% endcall %} {% call card.content() %}

Members

Your team members

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

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

{% endwith %}

Go to your team and kick all your members, then try again.

Tip: Reroll your own team's invite link so that your old members can't join back.

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