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

Statistics for game {{game_id}}

Endgame Analysis table

{% for (turn, best_action, other_actions) in data %} {% for action in other_actions %} {% endfor %} {% endfor %}
Turn Action Fractional Probability Probability
{{ turn }} {% if best_action.marked %}{% endif %}{{ best_action.description }}{% if best_action.marked %}{% endif %} {{ best_action.enumerator }}/{{ best_action.denominator }} {{ best_action.win_rate }}%
{% if action.marked %}{% endif %}{{ action.description }}{% if action.marked %}{% endif %} {{ action.enumerator }}/{{ action.denominator }} {{ action.win_rate }}%
{% endblock %}