{% extends "tournamentcontrol/competition/season.html" %} {% load i18n %} {% load content competition %} {% block body_class %}{{ block.super }} forfeit{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Forfeits" %}
  • {% endblock %} {% block content %}

    {{ competition.title }}

    {{ season.title }}

    {% trans "Forfeit notifications" %}

    {% block copy %} {% chunk "forfeit-notification-copy" %} {% endblock %} {% if messages %} {% endif %}
    {% for team in user.person.teams|teams_in_season:season %}

    {{ team }}

    {% for match in team.matches.future.playable %}
    {{ match.datetime|default:match.date }}
    {% if match.is_forfeit %}
    {{ match|opponent:team }}
    {% else %}
    {{ match|opponent:team }}
    {% endif %} {% endfor %}
    {% endfor %}
    {% endblock %}