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

Downloads

rescan-icon

Rescan subscriptions

download-icon

Start download

add-icon

Add to download queue

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

Ignored from download

{% else %}

Download queue

{% endif %}

Total videos: {{ max_hits }}

{% if all_video_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 %} {% endif %}
{% endblock content %}