{% extends "rookscore/base.html" %} {% block extra_script %} {% endblock %} {% block body %}

{% if season %}{{ season }}{% else %} All Time{% endif %} Standings

{% if rankings.player_list %} {% include "rookscore/standings_table.html" %} {% else %}

No players are available!

{% endif %}

Rating over time

Recent Games

{% if recent_game_list %} {% for game in recent_game_list %} {% with game_scores=game.scores.all %} {% if game_scores|length > 0 %}
{% include "rookscore/single_game_summary.html" %}
{% endif %} {% endwith %} {% endfor %} {% else %}

No games are available.

{% endif %}
{% endblock %}