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

Playlists

{% if running == "subscribing" %}

Subscribing in progress, refresh.

{% else %} add-icon

Subscribe to Playlist

{% csrf_token %} {{ subscribe_form }}
{% endif %}
search-icon

Search your Playlists

Show only subscribed playlists:
grid view list view
{% if playlists %} {% for playlist in playlists %}

{{ playlist.source.playlist_channel }}

{{ playlist.source.playlist_name }}

Last refreshed: {{ playlist.source.playlist_last_refresh }}

Subscribed: {% if playlist.source.playlist_subscribed %} {% else %} {% endif %}

{% endfor %} {% else %}

No playlists found...

{% endif %}
{% endblock content %}