{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}

Results

{% for player in group.get_players %}

Player {{ player.id_in_group }}:

Chosen Bet: {{ player.chosen_bet }}

Number: {{ player.number }}

{% if player in top_guessa1 %}

You would be accepted if you applied to school A.

{% elif player in top_guessa2 %}

You would be accepted if you applied to school A.

{% elif player in top_guessa3 %}

You would be accepted if you applied to school A.

{% elif player in top_guessa4 %}

You would be accepted if you applied to school A.

{% elif player in top_guessa5 %}

You would be accepted if you applied to school A.

{% elif player in top_guessa6 %}

You would be accepted if you applied to school A.

{% else %}

You would be rejected if you applied to school A.

{% endif %} {% if player in top_guessb1 %}

You would be accepted if you applied to school B.

{% elif player in top_guessb2 %}

You would be accepted if you applied to school B.

{% elif player in top_guessb3 %}

You would be accepted if you applied to school B.

{% elif player in top_guessb4 %}

You would be accepted if you applied to school B.

{% elif player in top_guessb5 %}

You would be accepted if you applied to school B.

{% elif player in top_guessb6 %}

You would be accepted if you applied to school B.

{% else %}

You would be rejected if you applied to school B.

{% endif %}
{% endfor %} {% next_button %} {% include Constants.instructions_template %} {% endblock %}