{% extends "otree/BaseAdmin.html" %} {% load static %} {% block title %} {% if is_archive %} Archived Sessions {% else %} Sessions {% endif %} {% endblock %} {% block content %} {{ block.super }}

 

{# this is just here for ergonomics so that after you click 'create session' you are in the same spot #}

{% if object_list %}
{% csrf_token %}


{% for s in object_list %} {% endfor %}
Code Size Config Label
{{ s.code }} {{ s.num_participants }} {{ s.config.name }} {{ s.label }} {% if s.mturk_is_active %} MTurk Live {% endif %}
{% endif %} {% if not is_archive and archived_sessions_exist %}
Archived sessions
{% endif %} {% include "otree/includes/messages.html" %} {% endblock %} {% block internal_scripts %} {{ block.super }} {% endblock %}