{{ block title }}
{{if player.role == Constants.rich_role}}
Second Decision
{{else}}
{{if group.sp_amount >= 1}}
Second Decision
{{else}}
Your Decision
{{endif}}
{{endif}}
{{ endblock }}
{{ block content }}
{{if player.role == Constants.rich_role}}
{{if group.sp_amount >= 1}}
You have chosen to transfer {{group.sp_amount}} point(s) to Player B.
{{else}}You have chosen not to make a transfer.
{{endif}}You are now asked to make your second decision.
{{else}} {{if group.sp_amount >= 1}}Country A offered you a transfer of {{group.sp_amount}} point(s).
{{if group.field_maybe_none('sp_decision') == None}}The offer was automatically rejected as you have made no decision.
{{else}} {{if group.sp_decision == 1}}You accepted the transfer. Your payoffs now increase by {{group.sp_amount}} point(s).
{{else}}You decided not to accept the transfer.
{{endif}} {{endif}}You are now asked to make your second decision.
{{else}}Player A decided not to offer you a transfer.
You are now asked to make your decision.
{{endif}} {{endif}}What do you want to do with your points?
{{ formfields }} {{ next_button }} {{ endblock }}