{% extends "base.html" %} {% block title %}Text Adventure Builder - Editor{% endblock %} {% block content %}
{# Define Spellen Tab Pane first and make it active #}
{% include 'partials/tabs/spellen_tab.html' %}
{% if current_user.role.value == 'admin' %} {# Admin Panes - Rooms is no longer default active #}
{% include 'partials/tabs/rooms_tab.html' %}
{% include 'partials/tabs/entities_tab.html' %}
{% include 'partials/tabs/conversations_tab.html' %}
{% include 'partials/tabs/files_tab.html' %}
{% include 'partials/tabs/scripts_tab.html' %}
{% include 'partials/tabs/play_tab.html' %}
{% include 'partials/tabs/scores_tab.html' %}
{% include 'partials/tabs/admin_tab.html' %}
{% include 'partials/tabs/help_tab.html' %}
{% else %} {# Non-Admin Panes - Play is no longer default active #}
{% include 'partials/tabs/play_tab.html' %}
{% include 'partials/tabs/help_tab.html' %}
{% include 'partials/tabs/scores_tab.html' %}
{# Note: Spellen tab pane is already defined above and active #} {% endif %}
{% include 'partials/modals/entity_image_popup.html' %}
{% if current_user.role.value == 'admin' %} {% endif %}
{% include 'partials/modals/import_export_panel.html' %}
{% endblock %} {% block scripts %} {% endblock %}