{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Repeated Normal Form Game: Round {{ player.round_number }}
{% endblock %}
{% block content %}
You are the {{ player.role }} Player.
{% formfields %}
{% if player.round_number != 1 %}
{% if session.config.display_all_history %}
| History of Play |
| Your Choice |
{{ other.role }}'s Choice |
Your Payoff |
{% for a, b in players %}
| {{ a.choice }} |
{{ b.choice }} |
{{ a.payoff }} |
{% endfor %}
| |
{{ participant.payoff }} |
{% else %}
| History of Play |
| Your Choice |
{{ other.role }}'s Choice |
Your Payoff |
| {{ p1_last.choice }} |
{{ p2_last.choice }} |
{{ p1_last.payoff }} |
|
{{ participant.payoff }} |
{% endif %}
{% endif %}
|
Column
|
| Row |
|
Aay |
Bee |
| One |
(6, 2) |
(3, 5) |
| Two |
(3, 5) |
(5, 3) |
{% next_button %}
{% endblock %}