{% extends "otree/Session.html" %} {% block content %} {{ super() }} {% if use_browser_bots %} {% endif %} {% if is_defined('room') %}

This session is taking place in the room {# apply underline because alert-info makes blue link on blue background invisible #} {{ room.display_name }}.

{% include "otree/includes/RoomParticipantLinks.html" %} {# otherwise, if a participant closes their browser, there is no way for them to resume playing. #} {% if not room.has_participant_labels %}

Single-use links

Below are single-use links for this session only. You can use these in the event that you need to open (or re-open) a specific participant's link.

Show/Hide {% for participant_url in participant_urls %} {% endfor %}
P{{ forloop.counter }} {{ participant_url }}
{% endif %} {% elif session.is_demo %}

Below are temporary links for testing and demonstration. To launch a real study, either create persistent links by setting up a room, or create a session through the sessions page.

Choose one of the following options to play the session:


Combined views

{{ ADMIN_EMOJIS.SessionSplitScreen }} Split-screen view

{% if splitscreen_mode_on %} Launch {% else %} Not available 🛈︎ {% endif %}

{{ ADMIN_EMOJIS.SessionDemoGridView }} Grid view

{% if grid_mode_on %} Launch {% else %} Not available 🛈︎ {% endif %}


Session-wide testing link

Open the below link in up to {{ num_participants }} browser tabs.

{{ anonymous_url }}


Single-use links

Open each link in its own browser tab.

{% for participant_url in participant_urls %} {% endfor %}
P{{ forloop.counter }} {{ participant_url }}
{% else %}

You can either use the session-wide link, persistent links, or single-use links.

Session-wide link

If it's not practical for you to use a Room, you can distribute the following link to participants.

{{ anonymous_url }}

Persistent links

For a real session, you should use a room.

Single-use links

Below are single-use links.

{% include 'otree/includes/participant_code_links_table.html' with p_urls=participant_urls %} {% endif %} {% endblock %}