{% extends "home/base.html" %} {% block content %} {% load static %} {% load humanize %} {% load auth_extras %}
channel_banner

Videos

{% if has_streams %}

Streams

{% endif %} {% if has_shorts %}

Shorts

{% endif %} {% if has_playlists %}

Playlists

{% endif %}

About

{% if has_pending %} {% if request.user|has_group:"admin" or request.user.is_staff %}

Downloads

{% endif %} {% endif %}

{{ channel_info.channel_name }}

{% if channel_info.channel_subs >= 1000000 %}

Subscribers: {{ channel_info.channel_subs|intword }}

{% else %}

Subscribers: {{ channel_info.channel_subs|intcomma }}

{% endif %}

Last refreshed: {{ channel_info.channel_last_refresh }}

{% if channel_info.channel_active %}

Youtube: Active

{% else %}

Youtube: Deactivated

{% endif %}
{% if channel_info.channel_views >= 1000000 %}

Channel views: {{ channel_info.channel_views|intword }}

{% elif channel_info.channel_views > 0 %}

Channel views: {{ channel_info.channel_views|intcomma }}

{% endif %} {% if request.user|has_group:"admin" or request.user.is_staff %}
Delete {{ channel_info.channel_name }} including all videos?
{% if reindex %}

Reindex scheduled

{% else %}
{% endif %} {% endif %}
{% if channel_info.channel_description %}

{{ channel_info.channel_description|linebreaksbr|urlizetrunc:50 }}

{% endif %} {% if channel_info.channel_tags %}
{% for tag in channel_info.channel_tags %} {{ tag }} {% endfor %}
{% endif %} {% if request.user|has_group:"admin" or request.user.is_staff %}

Customize {{ channel_info.channel_name }}

{% csrf_token %}

Download format: {% if channel_info.channel_overwrites.download_format %} {{ channel_info.channel_overwrites.download_format }} {% else %} False {% endif %}
Enter "disable" to disable this override.

{{ channel_overwrite_form.download_format }}

Auto delete watched videos after x days: {% if channel_info.channel_overwrites.autodelete_days is not None %} {{ channel_info.channel_overwrites.autodelete_days }} {% else %} False {% endif %}
Enter a negative number to disable this override.

{{ channel_overwrite_form.autodelete_days }}

Index playlists: {% if channel_info.channel_overwrites.index_playlists %} {{ channel_info.channel_overwrites.index_playlists }} {% else %} False {% endif %}

{{ channel_overwrite_form.index_playlists }}

Enable SponsorBlock: {% if channel_info.channel_overwrites.integrate_sponsorblock %} {{ channel_info.channel_overwrites.integrate_sponsorblock }} {% elif channel_info.channel_overwrites.integrate_sponsorblock == False %} Disabled {% else %} False {% endif %}

{{ channel_overwrite_form.integrate_sponsorblock }}

Page Size Overrides


Disable standard videos, shorts, or streams for this channel by setting their page size to 0 (zero).


Disable page size overwrite for channel by setting to negative value.


YouTube page size: {% if channel_info.channel_overwrites.subscriptions_channel_size is not None %} {{ channel_info.channel_overwrites.subscriptions_channel_size }} {% else %} False {% endif %}

Videos to scan to find new items for the Rescan subscriptions task, max recommended 50.
{{ channel_overwrite_form.subscriptions_channel_size }}

YouTube Live page size: {% if channel_info.channel_overwrites.subscriptions_live_channel_size is not None %} {{ channel_info.channel_overwrites.subscriptions_live_channel_size }} {% else %} False {% endif %}

Live Videos to scan to find new items for the Rescan subscriptions task, max recommended 50.
{{ channel_overwrite_form.subscriptions_live_channel_size }}

YouTube Shorts page size: {% if channel_info.channel_overwrites.subscriptions_shorts_channel_size is not None %} {{ channel_info.channel_overwrites.subscriptions_shorts_channel_size }} {% else %} False {% endif %}

Shorts Videos to scan to find new items for the Rescan subscriptions task, max recommended 50.
{{ channel_overwrite_form.subscriptions_shorts_channel_size }}

{% endif %}
{% endblock content %}