{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block title %} Round {{ subsession.round_number }} {% endblock %} {% block content %}
{{ passed_minutes }} minutes has passed, so a six-sided dice is drawn to determine the terminal round. If 1 comes out, the current round will be the last round of the game; otherwise, next round will be the last round.
Result on dice: {{ draw }}
{% if draw == 1 %}The current round is the last round. Please click the 'next' button to check your final payoff from this game.
{% else %}Next round will be the last round. Please click the 'next' button to proceed.
{% endif %} {% next_button %} {% endblock %}