{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Results of Task {{ task }}, period {{ player.round_number }}
{% endblock %}
{% block content %}
| Your beginning period savings: |
{{ starting_balance }} points |
| Your social security benefits: |
{{ ssb }} points |
|
| Your consumption this period: |
{{ consumption }} points |
| Your ending period savings: |
{{ ending_balance }} points |
| Money earned this period: |
${{ period_payoff }} |
|
| Money earned this sequence (assuming the sequence was not terminated): |
${{ cumulative_payoff }} |
{% next_button %}
History of results
| Task |
Period |
Beginning Savings |
Social Security Benefit |
Consumption |
Ending Savings |
Period Payoff |
Cumulative Payoff |
{% for p in player_in_all_rounds_rev %}
| {{ Constants.task }} |
{{ p.round_number }} |
{{ p.starting_balance }} |
{{ p.ssb }} |
{{ p.consumption }} |
{{ p.ending_balance }} |
${{ p.period_payoff }} |
${{ p.cumulative_payoff }} |
{% endfor %}
{% endblock %}