{% extends "layout.html" %} {% from "stats_table.html" import stats_list, games_table_js %} {% block navbar %} {% endblock %} {% block content %}

Player Statistics for {{player_name}}

{% for rating_type, player_row in player_stat.items() %}

{% if rating_type == 0 %} No Variant {% else %} Clue Starved {% endif %}

{{ stats_list(player_row.stats, True, True) }}
{% endfor %}
{% endblock %}