{% extends "global/Page.html" %}
{% load staticfiles otree %}
{% block app_styles %}
{% endblock %}
{% block content %}
{% for field in form %}
| {{ field.label }}
{% if forloop.counter == player.id_in_group %}
(You)
{% endif %}
|
{% endfor %}
{% for field in form %}
{% for choice in field %}
| {{ choice }} |
{% endfor %}
{% endfor %}
Contributions
|
{% for r in Constants.num_rounds_range %}
C |
E |
{% endfor %}
| You (Player {{ player.id_in_group }}) |
{% for p in player.in_previous_rounds %}
{{ p.contribution }} |
{{ p.payoff }} |
{% endfor %}
{{ player.contribution }} |
{% for others in player.get_others_in_group %}
| Player {{ others.id_in_group }} |
{% for p in others.in_previous_rounds %}
{{ p.contribution }} |
{{ p.payoff }} |
{% endfor %}
{{ others.contribution }} |
{% endfor %}
Punishments / Rewards
{% include "PGG2/ActionsTable.html" %}
{% endblock %}
{% block scripts %}
{% endblock %}