{% 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 %} {{ add_form }}
Show only ignored videos:
{% if show_ignored_only %} {% else %} {% endif %}
grid view list view
{% if show_ignored_only %}

Ignored from download

{% else %}

Download queue

{% endif %}

Total videos: {{ max_hits }}

{% if all_video_hits %} {% for video in all_video_hits %}
video_thumb {% if show_ignored_only %} ignored {% else %} queued {% endif %}

{{ video.title }}

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

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

{% if show_ignored_only %} {% else %} {% endif %}
{% endfor %} {% endif %}
{% endblock content %}