Club Management

Manage hockey clubs in the database

Add New Club Back to Admin
{% 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 Logo URL Actions
{{ club.id }} {{ club.hockey_club }} {% if club.logo_url %} {{ club.hockey_club }} logo {% else %} No logo {% endif %} {% if club.logo_url %} {{ club.logo_url[:50] }}{% if club.logo_url|length > 50 %}...{% endif %} {% else %} No URL {% endif %} Edit
{% else %}
No clubs found

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

{% endif %}