{% extends "otree/Base.html" %} {% load i18n %} {% load otree static %} {% comment %} NOTE: we should keep this page as simple as possible so that 'view source' is friendly i removed many linebreaks to make output HTML cleaner {% endcomment %} {% block body_main %}
{% if view.remaining_timeout_seconds != None %} {% include 'otree/includes/TimeLimit.html' with form_element_id="form" %} {% endif %} {% if view.live_method %}
{% endif %} {% if form.errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{% block content %}{% 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 internal_scripts %} {{ block.super }} {% if view.remaining_timeout_seconds != None %} {% include 'otree/includes/TimeLimit.js.html' %} {% endif %} {% endblock %} {% block live %} {% if view.live_method %}
{% endif %} {% endblock %}