{% extends "base_table.html" %} {% block extra_head %} {% endblock %} {% block extra_scripts %}{% include "query_scripts.html" %}{% endblock %} {% block query_tab_class %} active{% endblock %} {% block inner_content %}

+/- table definition

Query

{{ table_sql|format_create_table|highlight }}
{% set sql_textarea_id = 'table-sql' %} {% include "query_form.html" %}
{% if results %} {% include "results_multi.html" %} {% elif result and result.kind != 'error' %} {% set show_edit = allow_edit and result.keys %} {% set show_detail = allow_detail and result.keys %} {% set show_bulk = allow_bulk and result.keys %} {% if result.kind == 'rows' and result.rows %} {% if show_bulk %}
{% endif %}
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 %} {% if show_bulk %}
{% endif %} {% if paginate %} {% include "pagination.html" %} {% endif %} {% endif %} {% endif %} {% include "query_modals.html" %} {% endblock %}