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

{% if object_list %}
{% csrf_token %}


{% for s in object_list %} {% endfor %}
Code Label Config
{{ s.code }} {{ s.label }} {{ s.config.name }} Links Edit Monitor Data Payments {% if s.is_for_mturk %} {% if not s.mturk_HITId %} MTurk    {% else %} {% endif %} {% endif %}
{% endif %} {% if not is_archive and archived_sessions_exist %}
Archived sessions
{% endif %} {% include "otree/includes/messages.html" %} {% endblock %}