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

    Playground

    The playground is for experimenting and writing ad-hoc queries. By default, nothing you do here will be saved.

    {% 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 %}
    Playground SQL
    {% if ql_id %}
    {% endif %}
    {% include 'explorer/preview_pane.html' %} {% endblock %} {% block sql_explorer_scripts %} {% endblock %}