{% extends "rookscore/base.html" %}
{% block body %}
Games Page
{% if games_list %}
{% if games_list.has_previous %}
previous
{% endif %}
Page {{ games_list.number }} of {{ games_list.paginator.num_pages }}.
{% if games_list.has_next %}
next
{% endif %}
{% for game in games_list %}
{% with game_scores=game.scores.all %}
{% include "rookscore/single_game_summary.html" %}
{% endwith %}
{% endfor %}
{% else %}