Tables of Evaluated Results

{% for key, evaluation in evaluations.items() %}

{{ key }}

{% for p in evaluation.itertuples() %} {% endfor %}
Position Player ID Player Name Points Won Won Points Lost Lost Points Opponents Lost Opponents Lost Points Score
{{ p.Index }} {{ p.player_id }} {{ players[p.player_id].name }} {{ p.points }} {{ p.won }} {{ p.won_points }} {{ p.lost }} {{ p.lost_points }} {{ p.opponents_lost }} {{ p.opponents_lost_points }} {{ p.score }}
{% endfor %}