{% extends "core/schedule.html" %} {% block selectedTab3 %} class="tabs-selected"{% endblock %} {% block section %}Schedule{% endblock %} {% block title %}Matchups{% endblock %} {% block content %}

My Team's Matchups

On this screen you can schedule games with other teams, confirm or reject game requests from other teams, and check the status of your match ups for seeding and season rounds.

Your team is: {{ user.get_profile.team }}

Seeding Matchups ({{ currentSeason }})

{% if seedingMatchups %} {% for object in seedingMatchups %} {% ifequal object.matchup.homeTeam user.get_profile.team %} {% else %} {% endifequal %} {% ifequal object.matchup.awayTeam user.get_profile.team %} {% else %} {% endifequal %} {% ifequal object.status "pickdate" %} {% else %} {% ifequal object.status "requesthome" %} {% else %} {% ifequal object.status "requestaway" %} {% else %} {% ifequal object.status "confirmed" %} {% else %} {% ifequal object.status "completed" %} {% else %} {% endifequal %} {% endifequal %} {% endifequal %} {% endifequal %} {% endifequal %} {% endfor %}
Home Team Away Team Status
{{ object.matchup.homeTeam }}{{ object.matchup.homeTeam }}{{ object.matchup.awayTeam }}{{ object.matchup.awayTeam }}Pick Date and Time:
Request for {{ object.event }}.
Game requested on {{ object.event }} at {{ object.event.rink }}.Confirmed for {{ object.event }} at {{ object.event.rink }}.Completed.{{ object.status }}
{% else %} Matchups for seeding round have not been generated yet. {% endif %}

Season Matchups ({{ currentSeason }})

{% if seasonMatchups %} {% for object in seasonMatchups %} {% ifequal object.matchup.homeTeam user.get_profile.team %} {% else %} {% endifequal %} {% ifequal object.matchup.awayTeam user.get_profile.team %} {% else %} {% endifequal %} {% ifequal object.status "pickdate" %} {% else %} {% ifequal object.status "requesthome" %} {% else %} {% ifequal object.status "requestaway" %} {% else %} {% ifequal object.status "confirmed" %} {% else %} {% ifequal object.status "completed" %} {% else %} {% endifequal %} {% endifequal %} {% endifequal %} {% endifequal %} {% endifequal %} {% endfor %}
Home Team Away Team Status
{{ object.matchup.homeTeam }}{{ object.matchup.homeTeam }}{{ object.matchup.awayTeam }}{{ object.matchup.awayTeam }}Pick Date and Time:
Request for {{ object.event }}.
Game requested on {{ object.event }} at {{ object.event.rink }}.Confirmed for {{ object.event }} at {{ object.event.rink }}.Completed.{{ object.status }}
{% else %} Matchups for regular season have not been generated yet. {% endif %} {% endblock %}