{% extends 'admin/base.html.twig' %} {% block title %}Seasons{% endblock %} {% block page_title %}Seasons Management{% endblock %} {% block body %}

All Seasons

➕ Create New Season
{% if seasons is empty %}
No seasons found. Create your first season to get started!
{% else %}
{% for season in seasons %} {% endfor %}
ID Name Start Date End Date Status Rounds Matches Actions
{{ season.id }} {{ season.name }} {{ season.startDate|date('M d, Y') }} {{ season.endDate|date('M d, Y') }} {% if season.isActive %} Active {% else %} Inactive {% endif %} {{ season.rounds|length }} {{ season.matches|length }}
Edit Add Round
{% endif %} {% endblock %}