History for Match
{% for k in match_list reversed %}
{{ k }}
{% endfor %}
Match
Round
Your Choice
Other's Choice
{% for k,v in history.items %} {% for i,j in v.items %} {% if j.match == current_match_int and j.period == period_number_string %}
{% else %}
{% endif %}
{{ j.match }}
{{ j.period }}
{{ j.action }}
{{ j.others_action }}
{% endfor %} {% endfor %}
{% for k,v in match_to_game.items %}
{% if k == current_match %}
Details of Current Match
{% endif %} {% if k != current_match %}
Details of Match {{ k }}
{% endif %}
Payoffs
{#
Other's Choice
#}
1
2
{#
Your Choice
#}
1
{{ v.payoffs.0 }},{{ v.payoffs.0 }}
{{ v.payoffs.2 }},{{ v.payoffs.3 }}
2
{{ v.payoffs.3 }},{{ v.payoffs.2 }}
{{ v.payoffs.1 }},{{ v.payoffs.1 }}
Probability of Continuation
{{ v.cutoff }}%
{% endfor %}