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

All Rounds

View Seasons
{% if rounds is empty %}
No rounds found. Create a season first, then add rounds to it.
{% else %}
{% for round in rounds %} {% endfor %}
ID Round # Name Season Start Date End Date Matches Actions
{{ round.id }} {{ round.roundNumber }} {{ round.name }} {{ round.season.name }} {{ round.startDate ? round.startDate|date('M d, Y') : '-' }} {{ round.endDate ? round.endDate|date('M d, Y') : '-' }} {{ round.matches|length }}
Edit Add Match
{% endif %} {% endblock %}