{% extends "global/Page.html" %}
{% load staticfiles otree %}
{% load i18n %}
{# ****************************************************************************************************************** #}
{# *** STYLES *** #}
{# ****************************************************************************************************************** #}
{% block styles %}
{% if Constants.one_page %}
{% if list_ordering == 'xy' %}
{% else %}
{% endif %}
{% endif %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** SCRIPTS *** #}
{# ****************************************************************************************************************** #}
{% block scripts %}
{% if Constants.enforce_consistency and not Constants.shuffle_lists %}
{% endif %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** TITLE *** #}
{# ****************************************************************************************************************** #}
{% block title %}
{% trans "Your Decisions" %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** CONTENT *** #}
{# ****************************************************************************************************************** #}
{% block content %}
{# ----------------------------------------------------------------------------------------------------------- #}
{# --- x-List --- #}
{# ----------------------------------------------------------------------------------------------------------- #}
{% if show_x %}
{% endif %}
{# ----------------------------------------------------------------------------------------------------------- #}
{# --- y-List --- #}
{# ----------------------------------------------------------------------------------------------------------- #}
{% if show_y %}
{% endif %}
{# ----------------------------------------------------------------------------------------------------------- #}
{# --- one choice per page --- #}
{# ----------------------------------------------------------------------------------------------------------- #}
{% if Constants.one_choice_per_page %}
{% endif %}
{% next_button %}
{% endblock %}