{% extends "layout.html" %} {% block navbar %} {% endblock %} {% block content %}

League Statistics for {{variant_name}}

{% with stats=variant_stats, show_rating=False %} {% include "stats_table.html" %} {% endwith %}
{% for num_players, stats in variant_stats_by_player.items() %}

League Statistics for {{variant_name}} - {{num_players}} Players

{% with show_rating=True %} {% include "stats_table.html" %} {% endwith %}

List of Played Games

{% if stats.games_played == 0 %} There have been no games played on this variant with {{num_players}} players so far. {% else %}
{% endif %}
{% endfor %}
{% endblock %}