{% extends "otree/BaseBuiltIn.html" %} {% block title %} {{ session_type_name }} {% endblock %} {% block content %} {% include 'otree/SessionInfo.html' %}

Start links

Open all links, each in its own browser tab.

{# in demo mode, experimenter link is omitted #} {% if is_demo_page %} {% for participant_url in participant_urls %} {{ participant_url }}
{% endfor %}

These are single-use links. To get new start links, refresh this page. This will let you simulate a new set of participants, who will be reassigned to match groups.

{% else %}

Experimenter

{{ experimenter_url }}

Participants

{% for participant_url in participant_urls %} {{ participant_url }}
{% endfor %}

Before participants can play, you need to click the experimenter link above and start the session.

{% endif %} {% endblock %}