{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results of Task {{Constants.Task }}, period {{ player.round_number }} {% endblock %} {% block content %}
Your beginning period savings: {{ player.starting_balance }}
Your social security benefits: {{ player.ssb }}

Your consumption this period: {{ player.consumption }}
Your ending period savings: {{ player.ending_balance }}
Money earned this period: ${{ player.period_payoff }}

Money earned this sequence (assuming the sequence was not terminated): ${{ player.cumulative_payoff }}

{% next_button %}
History of results

{% for p in player_in_all_rounds_rev %} {% endfor %}
Task Period Beginning Savings Social Security Benefit Consumption Ending Savings Period Payoff Cumulative Payoff
{{ Constants.Task }} {{ p.round_number }} {{ p.starting_balance }} {{ p.ssb }} {{ p.consumption }} {{ p.ending_balance }} ${{ p.period_payoff }} ${{ p.cumulative_payoff }}
{% endblock %}