{% extends "global/Page.html" %} {% load otree static %} {% load otree i18n %} {% block styles %} {% endblock %} {% block title %} {% trans 'Results Round' %} {{ round }} {% endblock %} {% block content %}
{% 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 %}
| {% trans 'School' %} | {% trans 'Points' %} | ||||
|---|---|---|---|---|---|
| {% trans 'Student' %} {{ forloop.counter }} | {% trans 'School' %} {{ school }} | {{ points }} | {% else %}{% trans 'Student' %} {{ forloop.counter }} | {% trans 'School' %} {{ school }} | {{ points }} | {% endif %}
{% blocktrans with payoff=payoff %} You have earned {{ payoff }}. {% endblocktrans %}
{% next_button %} {% endblock %}