{{ block content }}

Instructions - Your Winning Color

{% comment %} On this template, I show the winning colors to both triangle and square Type A participants. Rather thant creating two different templates for the two groups of Type A participants, I use the "if" statement to only show the image corresponding to either triangle or square Type A participants. I use a dictionary with two different image paths in the Page class as can be seen in pages.py for the specification of the page "" {% endcomment %}
{% if participant.group_assignment == C.GROUP_TRIANGLE %}

Image showing winning color for Triangle Type A participants.

{% elif participant.group_assignment == C.GROUP_SQUARE %}

Image showing winning color for Square Type A participants.

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