{% extends "otree/admin/Session.html" %} {% block content %} {{ block.super }} {% if use_browser_bots %} {% endif %} {% if room %}

This session is taking place in the room {{ room.display_name }}.

{% include "otree/includes/RoomParticipantLinks.html" %} {% comment %} need this because otherwise, if a participant closes their browser, there is no way for them to resume playing. {% endcomment %} {% 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.

{% for participant_url in session_start_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.

You can either open {% if fullscreen_mode_on %} full-screen mode, {% endif %} the session-wide link, or the single-use links.

{% if fullscreen_mode_on %}

Full screen mode

Play in full screen mode.

{% endif %}

Session-wide link

Open the below link in {{ 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 is impractical to distribute distinct URLs to each participant, you can give the following start URL to all {{ num_participants }} participants.

{{ anonymous_url }}

Note: unlike the other link modes, this does not prevent the same person from playing twice.

Persistent links

If you want to give your participants permanent links that don't change, you should create your session in a room.

Single-use links

Below are single-use links, which you can distribute to your participants. Each link has a unique code for the participant.

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