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

+/- table definition

Query

{{ table_sql|format_create_table|highlight }}
Use Shift + Up/Down to navigate recently-executed queries {% if error %}
{{ error }}
{% endif %}

{% if row_count is not none and row_count >= 0 %}

Rows modified: {{ row_count }}

{% endif %} {% if data_description %} {% if not data %}

Empty result set.

{% else %} Permalink

Results ({% if total >= 0 %}{% if total_pages > 1 %}{{ page_start }}–{{ page_end }} of {% endif %}{{ total }}{% else %}unable to determine{% endif %})

{% for col_desc in data_description %} {% endfor %} {% for row in data %} {% for value in row %} {% endfor %} {% endfor %}
{{ col_desc[0] }}{% if ordering is not none %}{% if loop.index == ordering %}▼{% elif loop.index == -ordering %}▲{% endif %}{% endif %}
{% if value is none %}NULL{% else %}{{ value|value_filter|safe }}{% endif %}
{% include "pagination.html" %} {% endif %} {% endif %} {% endblock %}