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

📊 Dashboard

Database Health

Integrity {{ health.integrity }}
Journal Mode {{ health.journal_mode }}
Size {{ health.db_size_mb }} MB
Pages {{ health.page_count }}
WAL Pages {{ health.wal_pages }}
DB Path {{ db_path }}

📋 Tables

{% if tables %} {% for table in tables %} {% endfor %}
Table Name Row Count Actions
{{ table.name }} {{ table.row_count }} View
{% else %}

No tables found

{% endif %}

💾 Recent Backups

{% if backups %} {% for backup in backups %} {% endfor %}
Type File Size Status Time
{{ backup.backup_type }} {{ backup.file_path|truncate(40) if backup.file_path else '-' }} {{ backup.file_size|default(0) }} bytes {{ backup.status }} {{ backup.created_at }}
{% else %}

No backups yet

{% endif %}
{% endblock %}