{% extends 'notifpy/base.html' %} {% load static %} {% block title %}Playlists ∣ {{ block.super }} {% endblock %} {% block main_content %} {% if playlists %}
{% for playlist in playlists %}
{% if playlist.size %} {{ playlist.size }} video{{ playlist.size|pluralize }} {% else %} No video in this playlist. {% endif %}
{% endfor %}

{% else %}

You have no playlist

Click the button to create a playlist.

{% endif %} {% endblock %}