League Statistics for {{variant_name}}
{{ stats_list(variant_stats, False) }}
List of Played Games
{% if variant_stats.games_played == 0 %}
There have been no games played on this variant so far.
{% else %}
{% endif %}
{% for num_players, num_player_stats in variant_stats_by_player.items() %}
League Statistics for {{variant_name}} - {{num_players}} Players
{{ stats_list(num_player_stats, True) }}
List of Played Games
{% if num_player_stats.games_played == 0 %}
There have been no games played on this variant with {{num_players}} players so far.
{% else %}
{% endif %}
{% endfor %}
{% endblock %}