{% extends "wei/base.html" %} {% load i18n %} {% block profile_content %}

{% trans "Bus attribution" %}

{% trans 'user'|capfirst %}
{{ object.user }}
{% trans 'last name'|capfirst %}
{{ object.user.last_name }}
{% trans 'first name'|capfirst %}
{{ object.user.first_name }}
{% trans 'gender'|capfirst %}
{{ object.get_gender_display }}
{% trans 'department'|capfirst %}
{{ object.user.profile.get_department_display }}
{% trans 'health issues'|capfirst %}
{{ object.health_issues|default:"—" }}
{% trans 'suggested bus'|capfirst %}
{{ survey.information.selected_bus_name }}
{% for key, value in survey.registration.information.items %}
{{ key }}
{{ value }}
{% endfor %}

{% for bus, score in survey.ordered_buses %} {% endfor %} {% trans "Back to main list" %}
{% endblock %} {% block extrajavascript %} {% endblock %}