{% extends "global/Page.html" %} {% 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 }} You were the {{ p.role }} and {% if p.is_winner %} won {% else %} lost {% endif %}

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

{% formfields %} {% next_button %} {% endblock %}