{% 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 not show_ignored_only %} {% else %} {% endif %}
grid view list view

Total videos: {{ max_hits }}{% if max_hits == 10000 %}+{% endif %}

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

{{ video.source.title }}

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

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

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