{% extends 'base.html' %} {% load humanize %} {% block content %}

Favorite Playlists {{ playlists.count|default:"0" }} {% if playlists %} {% endif %}

{% if playlists %} {% for playlist in playlists %}
{{ playlist.name }}

{% if playlist.is_user_owned %}OWNED{% else %}IMPORTED{% endif %} {% if playlist.is_private_on_yt %}Private {% endif %} {{ playlist.video_count }} videos {{ playlist.playlist_duration }} {% if playlist.is_from_yt %}YT {% endif %} {% if playlist.marked_as == "watching" %}WATCHING{% endif %}

{% if playlist.tags.all %}

{% for tag in playlist.tags.all %} {{ tag.name }} {% endfor %}

{% endif %}
{% endfor %} {% else %}
No playlists marked favorite :(
{% endif %}


Favorite Videos {{ videos.count }} {% if videos %} {% endif %}

{% if videos %} {% for video in videos %}
{{ video.name|truncatewords:"15" }}
{{ video.duration }} {% if video.is_unavailable_on_yt %}Private{% endif %} {% if video.has_cc %}CC{% endif %} {% if video.view_count == -1 %}HIDDEN{% else %}{{ video.view_count|intword|intcomma }}{% endif %} {% if video.like_count == -1 %}HIDDEN{% else %}{{ video.like_count|intword|intcomma }}{% endif %}
{% endfor %} {% else %}
Nothing favorites :(
{% endif %}
{% endblock %}