{% extends "global/Page.html" %} {% load otree static realloc %} {% block title %} Chosen allocation {% endblock %} {% block content %} {% include 'reallocation/includes/role_block.html' %}
A randomly drawn tax rate is: {{ group.actual_tax_rate|perc }}
A randomly chosen participant whose decision is implemented: {{ group.allocation_dictator_id }} {% if group.allocation_dictator_id == player.id_in_group %} (You) {% endif %}
This participant has chosen to: {{ group.get_chosen_allocation|yesno:"Allocate, not allocate" }}
This decision means for each participant:
{% include 'reallocation/tax/income_per_type.html' with player_type='A' data=group.updated_allocation_dict.A %}
{% include 'reallocation/tax/income_per_type.html' with player_type='B' data=group.updated_allocation_dict.B %}
{% next_button %}
{% endblock %}