Club Management

Manage hockey clubs in the database

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
All Clubs
{% if clubs %}
{% for club in clubs %} {% endfor %}
ID Club Name Logo URL Actions
{{ club.id }} {{ club.hockey_club }} {{ club.logo_url }} Edit
{% else %}
No clubs found

There are no clubs in the database. Add the first club to get started.

{% endif %}