{% extends "otree/BaseAdmin.html" %} {% load otree_tags floppyforms %} {% 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 %}
{% for participant_label in room.get_participant_labels %} {% endfor %}
{% endif %} {% if room.has_participant_labels %} {# if there's no participant labels, there's no concept of participants absent #}

participants not present

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