{% extends "global/Page.html" %} {% load otree %} {% block title %} {% if participant.language == 'en' %} FUNI - Part 2 {% elif participant.language == 'de' %} FUNI - 2. Teil {% endif %} {% endblock %} {% block content %}

Phase 1

{% if participant.language == 'en' %}Group Connection{% else %}Gruppenverbindung{% endif %}

{% if group_connection == "strong" %}
{% if participant.language == 'en' %}Connection Established{% else %}Verbindung hergestellt{% endif %}
{% if participant.language == 'en' %}The threshold of {{ threshold }} points was reached.{% else %}Der Schwellenwert von {{ threshold }} Punkten wurde erreicht.{% endif %}
{% else %}
{% if participant.language == 'en' %}No Connection{% else %}Keine Verbindung{% endif %}
{% if participant.language == 'en' %}The threshold of {{ threshold }} points was not reached.{% else %}Der Schwellenwert von {{ threshold }} Punkten wurde nicht erreicht.{% endif %}
{% endif %}

{% if participant.language == 'en' %}Contributions{% else %}Beiträge{% endif %}

{% if participant.language == 'en' %}Your contribution{% else %}Ihr Beitrag{% endif %}
{{ own_contribution }}
{% if participant.language == 'en' %}Partner's contribution{% else %}Beitrag Ihres*Ihrer Mitspielers*in{% endif %}
{{ other_contribution }}
{% if participant.language == 'en' %}Total contribution{% else %}Gesamtbeitrag{% endif %}
{{ total_contribution }}

{% if participant.language == 'en' %}Your Payoff{% else %}Ihre Auszahlung{% endif %}

{% if participant.language == 'en' %}Your endowment:{% else %}Ihr Startguthaben:{% endif %} {{ endowment }}
{% if participant.language == 'en' %}Your contribution:{% else %}Ihr Beitrag:{% endif %} − {{ own_contribution }}
{% if participant.language == 'en' %}Points not invested:{% else %}Nicht investierte Punkte:{% endif %} = {{ points_kept }}
{% if participant.language == 'en' %}× 2 (doubling):{% else %}× 2 (Verdopplung):{% endif %} {{ payoff_kept }}
{% if participant.language == 'en' %} Belief bonus {% if belief_correct %} (✓ correct — your estimate was {{ belief_partner_contribution }}, actual was {{ other_contribution }}): {% else %} (✗ incorrect — your estimate was {{ belief_partner_contribution }}, actual was {{ other_contribution }}): {% endif %} {% else %} Schätzbonus {% if belief_correct %} (✓ korrekt — Ihre Schätzung war {{ belief_partner_contribution }}, tatsächlich waren es {{ other_contribution }} Punkte): {% else %} (✗ nicht korrekt — Ihre Schätzung war {{ belief_partner_contribution }}, tatsächlich waren es {{ other_contribution }} Punkte): {% endif %} {% endif %} + {{ belief_bonus }}
{% if participant.language == 'en' %}Your total payoff:{% else %}Ihre Gesamtauszahlung:{% endif %}
{{ total_payoff }}
{% if participant.language == 'en' %}

You have completed Phase 1. Click Next to begin Phase 2 - the encoding task.

{% else %}

Sie haben Phase 1 abgeschlossen, klicken Sie auf Weiter, um mit Phase 2 - der Kodieraufgabe - zu beginnen.

{% endif %}
{% endblock %}