{% extends "base.html" %} {% block content %}
| Team | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Extra | R | H | E |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ game.away_team }} | {% for val in game.box_score.away %}{{ val }} | {% endfor %}||||||||||||
| {{ game.home_team }} | {% for val in game.box_score.home %}{{ val }} | {% endfor %}
From: {{ s.team_name }} ({{ s.username }})
{% if show_score %}Score: {{ game.away_team }} {{ s.away_score }} - {{ game.home_team }} {{ s.home_score }}
{% if s.box_score %}| Team | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Ex | R | H | E |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Away | {% for v in s.box_score.away %}{{ v }} | {% endfor %}||||||||||||
| Home | {% for v in s.box_score.home %}{{ v }} | {% endfor %}
Date Proposal: {{ s.proposed_date }}
{% endif %}Game not found.
{% endif %} {% endblock %}