You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
483 B

{% extends "master.html" %}
{% block title %}{{ game.name|nullable }}{% endblock %}
{% block content %}
<h1>{{ localize("game-of-division", game: game.name.clone().unwrap(), division: division.name.clone().unwrap()) }}</h1>
<h2>{{ localize("team") }}</h2>
{{ team_stats|safe }}
<h2>{{ localize("individual") }}</h2>
{{ individual_stats|safe }}
<h2>{{ localize("box-score") }}</h2>
{{ box_score|safe }}
<h2>{{ localize("play-by-play") }}</h2>
{{ play_by_play|safe }}
{% endblock %}