{% load humanize %} {% if view_mode == "playlists" %}

{{ playlist_type }} Playlists {% if search_query != "" %}results for '{{ search_query|escape }}' {% endif %} {{ playlists.count|default:"0" }}

{% if playlists %} {% include 'intercooler/playlists.html' with playlists=playlists show_controls=True %} {% else %}
No playlists found :(
{% endif %}
{% else %}

{{ videos_type }} Videos {% if search_query != "" %}results for '{{ search_query|escape }}' {% endif %} {{ videos.count }} {% if videos.count > 100 %}(only top 100 results shown){% endif %}

{% if videos %} {% include 'intercooler/video_cards.html' with videos=videos|slice:"0:100" %} {% else %}
Nothing found :(
{% endif %}
{% endif %}