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

Downloads

rescan-icon

Rescan subscriptions

download-icon

Download queue

add-icon

Add to download queue

{% csrf_token %}
Change show / hide ignored only {{ filter_view }}
{% if filter_view == "ignore" %}

Ignored from download

{% else %}

Download queue

{% endif %}
{% if all_video_hits %}

Total videos found: {{ max_hits }}

{% for video in all_video_hits %}
video_thumb
{% if filter_view == "ignore" %}

Ignore: {{ video.title }}

{% else %}

Download: {{ video.title }}

{% endif %} {% if video.channel_indexed %} {{ video.channel_name }} {% else %} {{ video.channel_name }} {% endif %}

Published: {{ video.published }} | Duration: {{ video.duration }} | {{ video.youtube_id }}

{% if filter_view == "ignore" %} {% else %} {% endif %}
{% endfor %} {% else %}

No videos found

{% endif %}
{% endblock content %}