{% extends "admin/base_site.html" %} {% load i18n admin_static %} {% load otree_dashboard %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}

Create a session

{% if app_list %} {% with non_subsession_apps=app_list|non_subsession_apps %} {% if non_subsession_apps|length != 0 %}

Global

{% mock_data_export_app %} {% for app in non_subsession_apps %} {% if app.app_label == "session" %} {% include "admin/_dashboard_app_template.html" with app_models=app.models|fix_session_app_models_order %} {% endif %} {% endfor %} {% for app in non_subsession_apps %} {% if app.app_label != "session" %} {% include "admin/_dashboard_app_template.html" with app_models=app.models %} {% endif %} {% endfor %} {% endif %} {% endwith %}

Apps

{% for app in app_list|subsession_apps_only %} {% include "admin/_dashboard_app_template.html" with app_models=app.models|fix_subsession_app_models_order %} {% endfor %} {% else %}

{% trans "You don't have permission to edit anything." %}

{% endif %}
{% endblock %} {% block sidebar %} {% endblock %}