{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}
{% if player.volunteer %} You volunteered. As a result, your payoff is {{ player.payoff }}. {% elif group.num_volunteers > 0 %} You did not volunteer but some did. As a result, your payoff is {{ player.payoff }}. {% else %} You did not volunteer and no one did. As a result, your payoff is {{ player.payoff }}. {% endif %}
{% next_button %}
{% include Constants.instructions_template %} {% endblock %}