{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
{% endblock %}
{% block content %}
Please indicate the intensity with which you feel, at the moment, each of the emotions below.
| Anger |
{% for choice in form.anger_after %}
{% if forloop.counter <= 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.anger_after %}
{% if forloop.counter > 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| Happiness |
{% for choice in form.happiness_after %}
{% if forloop.counter <= 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.happiness_after %}
{% if forloop.counter > 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| Shame |
{% for choice in form.shame_after %}
{% if forloop.counter <= 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.shame_after %}
{% if forloop.counter > 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| Guilt |
{% for choice in form.guilt_after %}
{% if forloop.counter <= 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.guilt_after %}
{% if forloop.counter > 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| Anxiety |
{% for choice in form.anxiety_after %}
{% if forloop.counter <= 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.anxiety_after %}
{% if forloop.counter > 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| Surprise |
{% for choice in form.surprise_after %}
{% if forloop.counter <= 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.surprise_after %}
{% if forloop.counter > 9 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% next_button %}
{% endblock %}