{{ block title }}Results{{ endblock }}
{{ block content }}
Your results - Round {{ subsession.round_number }}
| Your price |
Your cost |
Your sales |
Your profit |
| {{ me_now.price }} |
{{ me_now.cost }} |
{{ me_now.sales }} units |
{{ me_now.profit }} |
Others in your group - Round {{ subsession.round_number }}
| Price |
Sales |
{% for other in others %}
| {{ other.price }} |
{{ other.num_winner }} units |
{% empty %}
| No other players in group |
{% endfor %}
Your history (previous 5 rounds)
| Round |
Your price |
Your profit |
{% if last5 %}
{% for pr in last5 %}
| {{ pr.round_number }} |
{{ pr.price }} |
{{ pr.payoff }} |
{% endfor %}
{% else %}
| No prior rounds yet. |
{% endif %}
{{ next_button }}
{{ endblock }}