Match Squad Selection

Select players for the match squad from the available players

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {% if players %}
Available Players
Select players to add to the match squad
{% for player in players %}
{% endfor %}
{% else %}
No players available

There are no players in the database. Add some players before selecting a squad.

{% endif %}