{% extends 'base.html.twig' %} {% block title %}Matches - Sawnoff League{% endblock %} {% block body %}
View match schedules and results
|
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 }} |
There are currently no matches scheduled.