{% extends "global/Page.html" %} {% load otree static %} {% block title %} {% endblock %} {% block content %} {% if player.team == 1 %}
| {% if player.team == 1 %} | Team A | {% else %}Team B | {% endif %} {% if player.team == 1 %}Team B | {% else %}Team A | {% endif %}
|---|---|---|---|---|
| Your Endowment | {{player.endowment}} | {% if player.team == 1 %}{{ Constants.team_ranges.1 }} | {% else %}{{ Constants.team_ranges.0 }} | {% endif %}|
| Your Contribution to Team Account: | {{ player.contribution }} | |||
| Team's Total Contribution to the Team Account: | {{ group.total_contribution }} | {% for g in subsession.get_groups %} {% if g.id != group.id %} {{ g.total_contribution }} {% endif %} {% endfor %} | ||
| Team's Multiplier Factor: | {{ group.get_multiplier_value }} | {% for g in subsession.get_groups %} {% if g.id != group.id %} {{ g.get_multiplier_value }} {% endif %} {% endfor %} | ||
| Per-Person Return: | {{ group.get_ppr_value }} | {% for g in subsession.get_groups %} {% if g.id != group.id %} {{ g.get_ppr_value }} {% endif %} {% endfor %} | ||
| Number of players on team | {{ player.get_team_size }} | {% for g in subsession.get_groups %} {% if g.id != group.id %} {{ g.team_size }} {% endif %} {% endfor %} | ||
| Earnings from Team Account | {{ group.individual_share }} | {% for g in subsession.get_groups %} {% if g.id != group.id %} {{ g.average_share }} {% endif %} {% endfor %} | ||
| Your Total Earnings This Round | {{player.payout}} |