{% extends "global/Page.html" %} {% load otree static %} {% block title %} Game {{ player.match }}, Round {{ player.round_in_match }} – Continue? {% endblock %} {% block content %}
The computer rolled a 100-sided die to determine whether the match is over or continues to another round.
{% if subsession.round_number in Constants.last_rounds %}The die roll was {{ dieroll }}.
Since the die roll was greater than {{ continuation_chance }}, the match is over.
{% else %}The die roll was {{dieroll}}.
Since the die roll was less than or equal to {{ continuation_chance }}, the match continues to another round.
{% endif %} {% next_button %} {% endblock %} {% block styles %} {% endblock %}