{% extends "layout.html" %} {% block navbar %} {% endblock %} {% block content %}
{% for num_players, stats in variant_stats.items() %}

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

{% include "stats_table.html" %}

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 %}