{% extends "global/Page.html" %} {% load otree static %} {% load i18n %} {% block title %} {% trans "Part 2 - Questionnaire 5" %} {% endblock %} {% block content %}

{% trans "How did you experience others behaving towards you?" %}
{% trans "Please indicate in a scale from 0 (nothing) to 5 (max)." %}

{% for field in form %} {% if "feel_others" not in field.name %} {% endif %} {% endfor %}
0 1 2 3 4 5
{{ field.label }}

{% if language == "fr" %} Pour les questions ci-dessous merci d'indiquer votre réponse sur une échelle de 0 (rien) à 5 (max). {% else %} For the questions below, please select a value from 0 (nothing) to 5 (max). {% endif %}

{% for field in form %} {% if "feel_others" in field.name %}
{{ field.label }}
{{ field }}
{% endif %} {% endfor %}
{% next_button %} {% endblock %} {% block scripts %} {% endblock %}