{% load humanize %} {% if search_query %}

Playlists {{ playlists.count|default:"0" }}

{% include 'intercooler/playlists.html' %}

Videos {{ videos_count }}

{% if playlist_items %} {% for playlist_item in playlist_items %}
{{ playlist_item.video.name|truncatewords:"15" }}
{{ playlist_item.playlist.name }} {{ playlist_item.video.duration }} {% if playlist_item.video.is_unavailable_on_yt %}Private {% endif %} {% if playlist_item.video.has_cc %}CC {% endif %}

{% endfor %} {% else %}
Nothing found :(
{% endif %}
{% else %} {% if all_playlists %}

All Playlists {{ all_playlists.count }}

{% for playlist in all_playlists %} {% endfor %}
{% endif %} {% endif %}