Team Management

Manage hockey teams in the database

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
All Teams
{% if teams %}
{% for team in teams %} {% endfor %}
ID Club Team Display Name League Actions
{{ team.id }} {{ team.club }} {{ team.team }} {{ team.display_name }} {{ team.league }} Edit
{% else %}
No teams found

There are no teams in the database. Add the first team to get started.

{% endif %}