{% extends "otree/BaseAdminRegular.html" %} {% block head_title %}{{ page_emoji }} Room: {{ room.display_name }}{% endblock %} {% block title %}Room: {{ room.display_name }}{% endblock %} {% block content %}

Create a new session

{% include "otree/includes/CreateSessionForm.html" %}

participants present

{% if room.has_participant_labels %}
Show/Hide
{% for participant_label in room.get_participant_labels() %} {% endfor %}


{# if there's no participant labels, there's no concept of participants absent #}

participants not present

Show/hide
{% for participant_label in room.get_participant_labels() %} {{ participant_label }} {% endfor %}
{% endif %}
{% include "otree/includes/RoomParticipantLinks.html" %} {% endblock %} {% block internal_styles %} {{ super() }} {% endblock %} {% block internal_scripts %} {{ super() }} {% endblock %}