{{ block title }}{{ endblock }} {{ block content }}

Game 1: Outcome


{% if solidarity_role == 'lucky' %}
🍀

You were LUCKY!

You received the windfall of {{ solidarity_ec }} ECs.

Your earnings: {{ solidarity_earnings }} ECs

({{ solidarity_ec }} ECs windfall − your pledge)

{% else %}
😔

You were UNLUCKY.

You did not receive the windfall, but you received the pledges from your lucky group members.

Your earnings: {{ solidarity_earnings }} ECs

{% endif %}
📊

Group Outcomes

{% for row in group_data %} {% endfor %}
Member Role Pledge Earnings
{% if loop.first %} {{ row.label }} {% else %} {{ row.label }} {% endif %} {% if row.role == 'lucky' %} 🍀 Lucky {% else %} 😔 Unlucky {% endif %} {{ row.pledge }} ECs {{ row.earnings }} ECs
{{ endblock }}