Admin Settings
{% with messages = get_flashed_messages(with_categories=true) %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endwith %}
Database Health
{% if health.ok %}
✅ {{ health.message }}
{% else %}
❌ {{ health.message }}
{% if health.missing_columns %}
Missing columns:
{% for col in health.missing_columns %}
- {{ col }}
{% endfor %}
{% endif %}
{% endif %}
DB path: {{ db_path }}
Database Statistics
{{ total_records }}
Total requests
{{ db_size }}
Database size
{{ upload_file_count }}
Uploaded MP3 files
{{ upload_dir_count }}
Request upload folders
{{ upload_size }}
Total upload size
{% if status_counts %}
By Status
{% for key,count in status_counts.items() %}
- {{ statuses[key] }} ({{ key }}): {{ count }}
{% endfor %}
{% else %}
No requests yet.
{% endif %}
Paths
Database:
{{ db_path }}
Uploads:
{{ upload_path }}
⚠️ Reset System
Use this only at the start of a new event. It will delete every request and every uploaded MP3 file. This cannot be undone.