{% extends "base.html" %} {% block title %}Discord MCP - Exporter Exports & Database{% endblock %} {% block content %}
Discord Exports & Database
Export Status
Status: {% if status.is_running %}Running{% else %}Idle{% endif %}
Last Export: {{ status.last_export_time or 'Never' }}
Export Files
{% if status.exported_files %}
{% for file in status.exported_files %} {% endfor %}
File Name Size (KB) Last Modified
{{ file.name }} {{ file.size }} {{ file.modified }}
{% else %}
No exports found. Click "Run Export Now" to start exporting.
{% endif %}
Channel Export History
{% if status.last_exports %}
{% for channel_id, export_time in status.last_exports.items() %} {% endfor %}
Channel ID Last Export Time
{{ channel_id }} {{ export_time }}
{% else %}
No channel export history found.
{% endif %}
Back to Dashboard
{% if status.errors %}
Export Errors
    {% for error in status.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}