{% extends "global/Page.html" %}
{% load staticfiles otree %}
{% load i18n %}
{# ****************************************************************************************************************** #}
{# *** STYLES *** #}
{# ****************************************************************************************************************** #}
{% block styles %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** SCRIPTS *** #}
{# ****************************************************************************************************************** #}
{% block scripts %}
{% if Constants.enforce_consistency == True %}
{% if Constants.one_choice_per_page == False and Constants.random_order == False %}
{% endif %}
{% endif %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** TITLE *** #}
{# ****************************************************************************************************************** #}
{% block title %}
{% trans "Your Decision" %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** CONTENT *** #}
{# ****************************************************************************************************************** #}
{% block content %}
{% if Constants.one_choice_per_page == True and Constants.progress_bar == True %}
{% endif %}
{% if Constants.accept_reject == True and Constants.variation != 'sure_payoff' %}
{% else %}
{% endif %}
{% next_button %}
{% endblock %}