{% extends 'base.html' %} {% load humanize %} {% block content %} {% if playlist.has_playlist_changed %}
{% else %}
{% endif %}

{{ playlist.name }}

by {{ playlist.channel_name }}

{{ playlist.marked_as|title }}

{% if playlist.description %}

{{ playlist.description }} {{ playlist. }}
{% else %}
No description
{% endif %}

{{ playlist.video_count }} videos {{ playlist.playlist_duration }} {% if playlist.is_private_on_yt %}private{% endif %} {% if playlist.has_unavailable_videos %} some videos are unavailable {% endif %} {% if playlist.has_duplicate_videos %} duplicate videos {% endif %}


{% for video in videos %}
  • {% if video.is_unavailable_on_yt %} {% else %}
    {{ video.video_position }}. {{ video.name }}
    {{ video.duration }} {% if video.has_cc %}CC{% endif %} {% if video.published_at %}{{ video.published_at }}{% endif %} {% if video.view_count %}{{ video.view_count|intword|intcomma }} views{% endif %} {% if video.is_duplicate %}duplicate{% endif %}
    {% if playlist.marked_as == "watching" %} {% endif %}
    {% endif %}
  • {% endfor %} {% endblock %}