{% extends "explorer/base.html" %} {% load explorer_tags i18n %} {% block sql_explorer_navlinks %} {% if can_change %}
  • {% trans "New Query" %}
  • {% trans "Playground" %}
  • {% trans "Logs" %}
  • {% endif %} {% endblock %} {% block sql_explorer_content %}

    {% trans "Playground" %}

    {% blocktrans trimmed %} The playground is for experimenting and writing ad-hoc queries. By default, nothing you do here will be saved. {% endblocktrans %}

    {% csrf_token %} {% if error %}
    {{ error|escape }}
    {% endif %} {% if form.connections|length > 1 %}
    {{ form.connection }}
    {% else %} {# still need to submit the connection, just hide the UI element #} {% endif %}
    {% trans "Playground SQL" %}
    {% if ql_id %} {% endif %}
    {% include 'explorer/preview_pane.html' %} {% endblock %} {% block sql_explorer_scripts %} {% endblock %}