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

All Matches

View Rounds
{% if matches is empty %}
No matches found. Create a round first, then add matches to it.
{% else %}
{% for match in matches %} {% endfor %}
ID Date & Time Home Team Away Team Score Round Season Status Actions
{{ match.id }} {{ match.matchDate|date('M d, Y H:i') }} {% if match.homeTeam.logo %} {{ match.homeTeam.logo }} {% endif %} {{ match.homeTeam.name }} {% if match.awayTeam.logo %} {{ match.awayTeam.logo }} {% endif %} {{ match.awayTeam.name }} {% if match.homeScore is not null and match.awayScore is not null %} {{ match.homeScore }} - {{ match.awayScore }} {% else %} - {% endif %} {% if match.round %} {{ match.round.name }} {% else %} - {% endif %} {{ match.season.name }} {% if match.status == 'scheduled' %} Scheduled {% elseif match.status == 'in_progress' %} In Progress {% elseif match.status == 'completed' %} Completed {% elseif match.status == 'postponed' %} Postponed {% elseif match.status == 'cancelled' %} Cancelled {% endif %}
Edit
{% endif %} {% endblock %}