{{ block content }}

Your Group and Type Assignment

You have been randomly assigned to the {% if participant.group_assignment == C.GROUP_TRIANGLE %} trianglegroup. {% elif participant.group_assignment == C.GROUP_SQUARE %} squaregroup. {% endif %}

And you have been randomly assigned to do type {% if participant.type_assignment == C.TYPE_A %} {{ C.TYPE_A_NAME }} tasks. {% else %} {{ C.TYPE_B_NAME }} tasks. {% endif %}

{% if participant.group_assignment == C.GROUP_TRIANGLE and participant.type_assignment == C.TYPE_A %}

Type A and group triangle assignment.

{% elif participant.group_assignment == C.GROUP_TRIANGLE and participant.type_assignment == C.TYPE_B %}

Type B and group triangle assignment.

{% elif participant.group_assignment == C.GROUP_SQUARE and participant.type_assignment == C.TYPE_A %}

Type A and group square assignment.

{% elif participant.group_assignment == C.GROUP_SQUARE and participant.type_assignment == C.TYPE_B %}

Type B and group square assignment.

{% endif %} {{ next_button }} {{ endblock }}