{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Asymmetric Matching Pennies: Stage {{subsession.stage}}, Round {{ round }}
{% endblock %}
{% block content %}
{% if player.role == 'Row' %}
You are now the Row Player.
{% else %}
You are now the Column Player.
{% endif %}
{% formfields %}
{% if subsession.stage == 1 %}
|
Column
|
| Row |
|
Heads |
Tails |
| Heads |
(1, 0) |
(0, 1) |
| Tails |
(0, 1) |
(1, 0) |
{% elif subsession.stage == 2 %}
|
Column
|
| Row |
|
Heads |
Tails |
| Heads |
(9, 0) |
(0, 1) |
| Tails |
(0, 1) |
(1, 0) |
{% else %}
|
Column
|
| Row |
|
Heads |
Tails |
| Heads |
(0.5, 0) |
(0, 1) |
| Tails |
(0, 1) |
(1, 0) |
{% endif %}
{% next_button %}
{% endblock %}