{% extends "base.html" %}
{% block title %}{{ table_name }} - SQLite Admin{% endblock %}
{% block content %}
Columns
| CID |
Name |
Type |
Not Null |
Default |
PK |
{% for col in columns %}
| {{ col.cid }} |
{{ col.name }} |
{{ col.type }} |
{{ col.notnull }} |
{{ col.dflt_value or '-' }} |
{{ col.pk }} |
{% endfor %}
{% if indexes %}
Indexes
| Sequence |
Name |
Unique |
Origin |
{% for idx in indexes %}
| {{ idx.seq }} |
{{ idx.name }} |
{{ idx.unique }} |
{{ idx.origin }} |
{% endfor %}
{% endif %}
Data ({{ total }} rows)
{% if rows %}
{% if total_pages > 1 %}
{% endif %}
{% else %}
No data in this table
{% endif %}
{% endblock %}