{% extends "global/Page.html" %}
{% load otree static %}
{% load otree i18n %}
{% block title %}
{% trans 'Final questions' %}
{% endblock %}
{% block scripts %}
{% endblock %}
{% block content %}
{% formfield player.gender %}
{% formfield player.age %}
{% formfield player.study %}
{% if show_consent %}
{% if treatment == 2 %}
{% formfield player.consent_reason %}
{% elif treatment == 3 %}
{% formfield player.object_reason %}
{% endif %}
{% formfield player.reason_free_text %}
{% if treatment == 2 %}
{% formfield player.consent_other %}
{% elif treatment == 3 %}
{% formfield player.object_other %}
{% endif %}
{% endif %}
{% formfield player.truthful %}
{% next_button %}
{% endblock %}