{% extends league_base %} {% block title %}{{ team }}{% endblock %} {% block main_content %}

{% if team.logo %}{% endif %} {{ team }} {{ team.conference }} {{ team.division }} ({{ team.record_as_string }})

Bye Week: Week {{ team.bye_gameset.sequence }}

{% for game in team.schedule %} {% endfor %}
Week Kickoff Opponent Result
{{ game.gameset.sequence }} {{ game.start_time|date:"D, M j - P" }} {% if team.id == game.away.id %} @ {{ game.home }} {% else %} {{ game.away }} {% endif %} {% if game.status == game.Status.UNPLAYED %}TBD {% else %} {% if game.status == game.Status.TIE %}T {% else %} {% if team == game.winner %}W{% else %}L{% endif %} {% endif %} {% endif %}
{% endblock %}