{{ table_name }}

{{ total|default:"0" }} row{{ total|pluralize }} · {{ columns|length }} column{{ columns|length|pluralize }}

Query this table

Columns

{% for col in columns %} {% endfor %}
# Name Type Not Null PK
{{ col.cid }} {{ col.name }} {{ col.type }} {% if col.notnull %}YES{% else %}{% endif %} {% if col.pk %}PK{% endif %}

Data {% if total > 0 %} (rows {{ page|add:"-1"|default:"0" }}{% widthratio per_page 1 1 %} - showing page {{ page }}) {% endif %}

{% if rows %}
{% for name in col_names %} {% endfor %} {% for row in rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ name }}
{{ cell|default:"NULL" }}
{% if has_prev or has_next %}
{% if has_prev %} {% else %} {% endif %} Page {{ page }} {% if has_next %} {% else %} {% endif %}
{% endif %} {% else %}

Table is empty.

{% endif %}