{% extends "base.html" %} {% block content %}
Total Games (Per Team): {{ season_info.total_games }}
Games Per Week: {{ season_info.games_per_week }}
Season Start: {{ season_info.start_date }}
Season End: {{ season_info.end_date }}
{% if season_info.total_games %}Playoff Teams: {{ season_info.playoff_teams }}
{% endif %}Status: {{ season_info.status }} {% if season_info.is_finished %}(Finished){% else %}(In Progress){% endif %}
| {{ loop.index }}. {{ row.team_name }} | {{ row.wins }} - {{ row.losses }} |
No teams enrolled.
{% endif %} {% else %}The season is currently active or upcoming.
{% if current_user.is_authenticated and not current_user.is_admin %} {% if user_season_status == 'Approved' %}You are currently enrolled in this season.
Your request to join is pending approval.
Login to apply for this season.
{% endif %} {% endif %}| Team | Wins (W) | Losses (L) | Runs For (RF) | Runs Against (RA) | Games Back (GB) |
|---|---|---|---|---|---|
|
{% if row.team_icon %}
|
{{ row.wins }} | {{ row.losses }} | {{ row.runs_for }} | {{ row.runs_against }} | {{ row.games_back }} |
No standings available for the selected season.
{% endif %}Playoff bracket not yet generated.
{% endif %}No playoff games scheduled.
{% endif %}