{{ extends 'global/Page.html' }} {{ block title }}Results{{ endblock }} {{ block content }}
{% if player.id_in_group == 1 %} You are the victim. {% if player.volunteer %} You called the police. As a result, your payoff is 0. {% elif group.num_volunteers > 0 %} You did not call the police but some did. As a result, your payoff is 0. {% else %} You did not call the police and no one did. As a result, your payoff is -5 points. {% endif %} {% else %} You are a neighbor. {% if player.volunteer %} You called the police. As a result, your payoff is 5 points. {% elif group.num_volunteers > 0 %} You did not call the police but some did. As a result, your payoff is 10 points. {% else %} You did not call the police and no one did. As a result, your payoff is 0. {% endif %} {% endif %}
{{ next_button }} {{ include C.INSTRUCTIONS_TEMPLATE }} {{ endblock }}