{% extends "base.html" %} {% block title %}{{ table_name }} - SQLite Admin{% endblock %} {% block content %}

Columns

{% for col in columns %} {% endfor %}
CID Name Type Not Null Default PK
{{ col.cid }} {{ col.name }} {{ col.type }} {{ col.notnull }} {{ col.dflt_value or '-' }} {{ col.pk }}
{% if indexes %}

Indexes

{% for idx in indexes %} {% endfor %}
Sequence Name Unique Origin
{{ idx.seq }} {{ idx.name }} {{ idx.unique }} {{ idx.origin }}
{% endif %}

Data ({{ total }} rows)

{% if rows %}
{% for col in columns %} {% endfor %} {% for row in rows %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col.name }}
{{ row[col.name]|truncate(100) if row[col.name] else 'NULL' }}
{% if total_pages > 1 %} {% endif %} {% else %}

No data in this table

{% endif %}
{% endblock %}