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

{{ 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 }}

Subscribed: {% if channel_info.channel_subscribed %} {% else %} {% endif %}

{% if channel_info.channel_active %}

Youtube: Active

{% else %}

Youtube: Deactivated

{% endif %}
Delete {{ channel_info.channel_name }} including all videos?
{% 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 max_hits %}

Total Videos archived: {{ max_hits }}

Watched:

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

Description:

{{ channel_info.channel_description|linebreaks }}
{% endif %}

Sort by {{ sort_by }}

Hide watched videos:
grid view list view
{% if videos %} {% for video in videos %}
video-thumb
play-icon
{% if video.source.player.watched %} seen-icon {% else %} unseen-icon {% endif %} {{ video.source.published }} | {{ video.source.player.duration_str }}

{{ video.source.title }}

{% endfor %} {% else %}

No videos found...

{% endif %}
{% endblock content %}