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

Playlists

{% if request.user|has_group:"admin" or request.user.is_staff %}
add-icon
{% csrf_token %} {{ subscribe_form }}
{% csrf_token %} {{ create_form }}
{% endif %}
Show subscribed only:
{% if not show_subed_only %} {% else %} {% endif %}
grid view list view
{% if results %} {% for playlist in results %}
{% if playlist.playlist_type != "custom" %}

{{ playlist.playlist_channel }}

{% endif %}

{{ playlist.playlist_name }}

Last refreshed: {{ playlist.playlist_last_refresh }}

{% if playlist.playlist_type != "custom" %} {% if playlist.playlist_subscribed %} {% else %} {% endif %} {% endif %}
{% endfor %} {% else %}

No playlists found...

{% endif %}
{% endblock content %}