{% extends "base.html" %} {% block title %}Channels{% endblock %} {% block content %}

Add New Channel

Find this in the channel URL or page source
Display name for the channel folder

Configured Channels

{% if channels %}
{% for channel in channels %} {% endfor %}
Channel Name Channel ID Actions
{{ channel.name }} {{ channel.id }} View on YouTube Delete
{% else %}

No channels configured yet. Add your first channel above to get started!

{% endif %}

How to Find Channel IDs

  1. Go to the YouTube channel page
  2. Right-click and select "View Page Source" (or press Ctrl+U / Cmd+U)
  3. Search for "channelId" (Ctrl+F / Cmd+F)
  4. Copy the value that looks like: UCfDNi1aEljAQ17mUrfUjkvg

Alternative: Some channel URLs include the ID directly:
youtube.com/channel/CHANNEL_ID_HERE/videos

{% endblock %}