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

{{ playlist_info.playlist_name }}

{% if playlist_info.playlist_type != "custom" %}

{{ channel_info.channel_name }}

{% if channel_info.channel_subs >= 1000000 %} Subscribers: {{ channel_info.channel_subs|intword }} {% else %} Subscribers: {{ channel_info.channel_subs|intcomma }} {% endif %}
{% endif %}

Last refreshed: {{ playlist_info.playlist_last_refresh }}

{% if playlist_info.playlist_type != "custom" %}

Playlist: {% if playlist_info.playlist_subscribed %} {% if request.user|has_group:"admin" or request.user.is_staff %} {% endif %} {% else %} {% endif %}

{% if playlist_info.playlist_active %}

Youtube: Active

{% else %}

Youtube: Deactivated

{% endif %} {% endif %}
Delete {{ playlist_info.playlist_name }}?
{% if max_hits %}

Total Videos archived: {{ max_hits }}/{{ playlist_info.playlist_entries|length }}

{% endif %} {% if reindex %}

Reindex scheduled

{% else %}
{% if playlist_info.playlist_type != "custom" %} {% endif %}
{% endif %}
{% if playlist_info.playlist_description %}

{{ playlist_info.playlist_description|linebreaksbr|urlizetrunc:50 }}

{% endif %}
Hide watched videos:
{% if not hide_watched %} {% else %} {% endif %}
{% if view_style == "grid" %}
{% if grid_items < 7 %} grid plus row {% endif %} {% if grid_items > 3 %} grid minus row {% endif %}
{% endif %} grid view list view
{% if results %} {% for video in results %}
video-thumb {% if video.player.progress %}
{% else %}
{% endif %}
play-icon
{% if video.player.watched %} seen-icon {% else %} unseen-icon {% endif %} {{ video.published }} | {{ video.player.duration_str }}
{% if playlist_info.playlist_type == "custom" %}

{{ video.channel.channel_name }}

{% endif %}

{{ video.title }}

{% if playlist_info.playlist_type == "custom" %} {% if pagination %} {% if pagination.last_page > 0 %} dot-menu-icon {% else %} dot-menu-icon {% endif %} {% else %} dot-menu-icon {% endif %} {% endif %}
{% endfor %} {% else %}

No videos found...

{% if playlist_info.playlist_type == "custom" %}

Try going to the home page to add videos to this playlist.

{% else %}

Try going to the downloads page to start the scan and download tasks.

{% endif %} {% endif %}
{% endblock content %}