{% extends "global/Page.html" %} {% load otree static %} {% load otree i18n %} {% block styles %} {% endblock %} {% block title %} {% trans 'Results Round' %} {{ round }} {% endblock %} {% block content %}
{% trans 'Your student type: Student' %} {{ type }}

{% blocktrans %} You submitted the following preference list: {% endblocktrans %}

{% for index, preference in preferences.items %} {{ index }} {% trans 'choice' %}: {% trans 'School' %} {{ preference }}
{% endfor %}

{% blocktrans with assigned=assigned %} You have been assigned to school {{ assigned }}. This is the current allocation: {% endblocktrans %}

{% for school, points in school_points_allocation %} {% if forloop.counter == type %} {% else %} {% endif %} {% endfor %}
{% trans 'School' %} {% trans 'Points' %}
{% trans 'Student' %} {{ forloop.counter }} {% trans 'School' %} {{ school }} {{ points }}{% trans 'Student' %} {{ forloop.counter }} {% trans 'School' %} {{ school }} {{ points }}

{% blocktrans with payoff=payoff %} You have earned {{ payoff }}. {% endblocktrans %}

{% next_button %} {% endblock %}