{% extends "base.html" %} {% block title %}Discord MCP - Exporter Manage Channels{% endblock %} {% block content %}
Manage Discord Channels

Select Discord channels to export and monitor. Check the boxes next to channels you want to include.

Loading...
Loading servers and channels...
No servers found matching your search.
{% if servers %} {# Servers are already sorted in the Python code #} {% for server_name, server_data in servers.items() %}
{{ server_name }}
Loading...
No channels found.
{% if server_data.channels_loaded %} {% for channel in server_data.channels %}
{% endfor %} {% else %}
Click to load channels...
{% endif %}
{% endfor %} {% else %}
No servers or channels found. Please make sure your Discord token is set in the configuration and refresh the list.
{% endif %}
Manually Add Channel IDs

You can also manually add channel IDs below (one per line).

{% if manual_channels %} {% for channel in manual_channels %}
{% endfor %} {% else %}
{% endif %}
Back to Dashboard
{% endblock %} {% block scripts %} {% endblock %}