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 %}
File Name |
Size (KB) |
Last Modified |
{% for file in status.exported_files %}
{{ file.name }} |
{{ file.size }} |
{{ file.modified }} |
{% endfor %}
{% else %}
No exports found. Click "Run Export Now" to start exporting.
{% endif %}
Channel Export History
{% if status.last_exports %}
Channel ID |
Last Export Time |
{% for channel_id, export_time in status.last_exports.items() %}
{{ channel_id }} |
{{ export_time }} |
{% endfor %}
{% else %}
No channel export history found.
{% endif %}
Back to Dashboard