{% extends "base.html" %} {% block title %}Match Squad Selection - HKFC Men's C Team{% endblock %} {% block content %}

Match Squad Selection

Select players for the match squad from the available players

{% 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. You need to add some players before selecting a squad.

Add Players
{% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}