{% extends "mobile/coach/base.html" %} {% load i18n %} {% comment %} Squad screen's staff "Add" entry point -- see CoachAddStaffView's own docstring for why this needs a shared position picker up top, unlike CoachAddPlayerView/C6's plain checkbox list (a roster spot's position is optional; StaffAssignment's is required). {% endcomment %} {% block header_extra %}
{% blocktrans with team=active_team.name %}Add staff to {{ team }}{% endblocktrans %}
{% endblock header_extra %} {% block content %}
{% csrf_token %}
{% for candidate in candidates %} {% empty %}
{% trans "No one is eligible to be added." %}
{% endfor %}
{% endblock content %}