{% extends "otree/Base.html" %}
{% 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 %}
{% block title %}{% endblock %}
{% if view.remaining_timeout_seconds() != None %}
{% with form_element_id="form" %}
{% include 'otree/includes/TimeLimit.html' %}
{% endwith %}
{% endif %}
{% if form.errors %}
{% if form.non_field_error %}
{{ form.non_field_error }}
{% else %}
{{ "Please fix the errors in the form."|gettext }}
{% endif %}
{% endif %}{% if is_defined('js_vars') and js_vars %}{% endif %}
{# need the check for projects with old MTurkLandingPage #}
{% if is_defined('view.is_debug') and view.is_debug %}
{% include 'otree/includes/debug_info.html' %}
{% endif %}
{% endblock %}
{% block internal_scripts %}
{{ super() }}
{% if view.remaining_timeout_seconds() != None %}
{% include 'otree/includes/TimeLimit.js.html' %}
{% endif %}
{% endblock %}
{% block live %}
{% if view.live_method %}
{% endif %}
{% endblock %}