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

Instructions

これはマッチングペニーゲームです。 プレイヤー1がMismatcherで、ミスマッチすれば勝ちです。 プレイヤー2がMatcherで、マッチすれば勝ちです。

最後に、1つのラウンドがランダムに選ばれて、支払いが行われます。

Round history

{% for p in player_in_previous_rounds %} {% endfor %}
ラウンド プレイヤーと結果
{{ p.round_number }} あなたは {{ p.role }} で {% if p.is_winner %} 勝った {% else %} 負けた {% endif %}

このラウンドでは、あなたは {{ player.role }} です。

{% formfield player.penny_side label="I choose:" %} {% next_button %} {% endblock %}