{% extends "global/Page.html" %} {% load otree %} {% block title %} {% if player.role == 'buyer' %}Dividing the Initial Endowment{% else %}Allocating the Packages{% endif %} {% endblock %} {% block content %}
{% include 'double_auction/includes/general_info_block_nonauction.html' %}
{% if player.role == 'seller' %}
{% formfield player.allocation_unit_dollar label=allocation_unit_dollar_label %}
{% endif %} {% if player.role == 'buyer' %} {% formfield player.allocation_dollar label=allocation_dollar_label %}
{% formfield player.allocation_btc label=allocation_btc_label %}
{% endif %} {% next_button %} {% endblock %} {% block styles %} {% endblock %} {% block scripts %} {# Here we include javascript block where we connect via websockets to oTree server #} {% include './includes/channel-js.html' %} {% endblock %}