{% extends "global/Page.html" %} {% load i18n otree static otree_survey %} {% block body_main %}
{% block header %} {% endblock %} {% if progress is not None %}{% progress_bar %}{% endif %}

{% block title %}{% trans "Survey" %}{% endblock %}

{% if view.remaining_timeout_seconds != None %} {% include 'otree/includes/TimeLimit.html' with form_element_id="form" %} {% endif %} {% if form.errors %}
{% blocktrans trimmed %}Please fix the errors in the form.{% endblocktrans %} {{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{% block content %} {% block survey_content %}
{% formfields %}
{% endblock %} {% navigation_buttons %} {% endblock %}
{% block footer %}{% endblock %}
{# need the default:False for projects with old MTurkLandingPage #} {% if view.is_debug|default:False %}
{% include 'otree/includes/debug_info.html' %} {% endif %}
{% endblock %} {% block app_styles %} {{ form.media }} {% endblock %} {% block app_scripts %} {# Need to include form media twice, because jQuery is loaded twice (head + end of body) by oTree #} {{ form.media }} {% endblock %}