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

Continue Watching

{% for video in continue_vids %}
video-thumb {% if video.source.player.progress %}
{% else %}
{% endif %}
play-icon
{% if video.source.player.watched %} seen-icon {% else %} unseen-icon {% endif %} {{ video.source.published }} | {{ video.source.player.duration_str }}

{{ video.source.channel.channel_name }}

{{ video.source.title }}

{% endfor %}
{% endif %}

Recent Videos

Hide watched:
{% if not hide_watched %} {% else %} {% endif %}
Sort by:
sort-icon {% if view_style == "grid" %}
{{ grid_items }} grid plus row grid minus row
{% endif %} grid view list view
{% if results %} {% for video in results %}
video-thumb {% if video.source.player.progress %}
{% else %}
{% endif %}
play-icon
{% if video.source.player.watched %} seen-icon {% else %} unseen-icon {% endif %} {{ video.source.published }} | {{ video.source.player.duration_str }}

{{ video.source.channel.channel_name }}

{{ video.source.title }}

{% endfor %} {% else %}

No videos found...

If you've already added a channel or playlist, try going to the downloads page to start the scan and download tasks.

{% endif %}
{% endblock content %}