{% extends "base_tables.html" %} {% block extra_head %} {% endblock %} {% block extra_scripts %}{% include "query_scripts.html" %}{% endblock %} {% block content_title %}Query{% endblock %} {% block content %} {% set sql_textarea_id = 'sql' %} {% include "query_form.html" %}
{% if results %} {% include "results_multi.html" %} {% elif result and result.kind != 'error' %} {% if result.kind == 'rows' and result.rows %} Permalink

Results ({{ page_start }}–{{ page_start + result.rows|length - 1 }}{% if total is not none %} of {{ total }}{% endif %})

{% endif %} {% include "results.html" %} {% if result.kind == 'rows' and result.rows and paginate %} {% include "pagination.html" %} {% endif %} {% endif %} {% include "query_modals.html" %} {% endblock %}