{% extends "global/Page.html" %} {% load otree %} {% block title %} Round {{ subsession.round_number }} of {{ Constants.num_rounds }} {% endblock %} {% block content %}

Instructions

This is a matching pennies game. Player 1 is the 'Mismatcher' and wins if the choices mismatch; Player 2 is the 'Matcher' and wins if they match.

At the end, a random round will be chosen for payment.

Round history

{% for p in player_in_previous_rounds %} {% endfor %}
Round Player and outcome
{{ p.round_number }} あなたの役割は {{ p.role }} で、 {% if p.is_winner %} 勝ちました {% else %} 負けました {% endif %}

In this round, you are the {{ player.role }}.

{% formfield player.penny_side label="私の選択は:" %} {% next_button %} {% endblock %}