{% extends 'base.html.twig' %} {% block title %}Matches - Sawnoff League{% endblock %} {% block body %}

Matches

View match schedules and results

{# Season Filter #} {% if seasons is not empty %}
{% endif %} {# Matches List #} {% if matches is not empty %}
{% for match in matches %} {% endfor %}
Date
Home Team Score Away Team Status Season
{{ match.matchDate|date('M d, Y') }}
{{ match.matchDate|date('H:i') }}
{{ match.homeTeam.name }} {% if match.status == 'completed' %} {{ match.homeScore }} - {{ match.awayScore }} {% else %} vs {% endif %} {{ match.awayTeam.name }} {% if match.status == 'scheduled' %} Scheduled {% elseif match.status == 'in_progress' %} In Progress {% elseif match.status == 'completed' %} Completed {% elseif match.status == 'cancelled' %} Cancelled {% endif %} {{ match.season.name }}
{% else %}

No matches found!

There are currently no matches scheduled.

{% endif %}
{% endblock %}