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