{% extends "mobile/coach/base.html" %} {% load i18n lucide %} {% comment %} C6 -- design_handoff_rosterchief_platform/README.md's C6 section: a checkbox per eligible candidate rather than one member at a time (see CoachAddPlayerView's own docstring for why, and what's scoped down from the mock -- no "Age eligible" filter, no fixed footer). {% endcomment %} {% block header_extra %}
{% blocktrans with team=active_team.name %}Add to {{ team }}{% endblocktrans %} {% blocktrans count counter=squad_count %}{{ counter }} on squad{% plural %}{{ counter }} on squad{% endblocktrans %}
{% endblock header_extra %} {% block content %}
{% if filter_param %}{% endif %} {% lucide "search" size=16 %}
{% trans "All" %} {% trans "Suggested" %} {% trans "No team" %}
{% if filter_param == "suggested" %}

{% trans "Was on this team's roster last season, or is on the age group below this season." %}

{% elif filter_param == "no_team" %}

{% trans "Not on any team's roster yet this season." %}

{% endif %}
{% csrf_token %}
{% for candidate in candidates %} {% empty %}
{% trans "No one matches." %}
{% endfor %}
{% endblock content %}