{% extends "base.html" %} {% block title %}{{ table_name }} - SQLite DBaaS{% endblock %} {% block content %}
view_column
Columns
{{ columns|length }} columns
{% for col in columns %} {% endfor %}
# Name Type Nullable Default PK
{{ col.cid }} {{ col.name }} {{ col.type }} {% if col.notnull %}No{% else %}Yes{% endif %} {{ col.dflt_value or '-' }} {% if col.pk %}✓{% else %}-{% endif %}
{% if indexes %}
key
Indexes
{% for idx in indexes %} {% endfor %}
Name Unique Origin
{{ idx.name }} {% if idx.unique %}Yes{% else %}No{% endif %} {{ idx.origin }}
{% endif %}
table_rows
Data
Page {{ page }} of {{ total_pages }}
{% if rows %}
{% for col in columns %} {% endfor %} {% for row in rows %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col.name }}
{{ (row[col.name] or 'NULL')|truncate(100) }}
{% if total_pages > 1 %}
{% if page > 1 %} chevron_left {% endif %} Page {{ page }} of {{ total_pages }} {% if page < total_pages %} chevron_right {% endif %}
{% endif %} {% else %}
table_rows
No data
This table is empty
{% endif %}
{% endblock %}