Player Management

Manage players in the HKFC Men's C Team database

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
All Players
{% if players %}
{% for player in players %} {% endfor %}
Number First Names Surname Nickname Team Actions
{{ player.playernumber }} {{ player.playerforenames }} {{ player.playersurname }} {{ player.playernickname }} {{ player.playerteam }} Edit
{% else %}
No players found

There are no players in the database. Add the first player to get started.

{% endif %}