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

{{ video.name }}
{% if video.user_label %}a.k.a {{ video.user_label }}{% endif %}

{% if video.is_marked_as_watched %} marked watched {% endif %}

by {{ video.channel_name }}

{% if video.description %}

{{ video.description|linebreaksbr|urlize }}
{% else %}
No description
{% endif %}

{{ video.duration }} {% if video.has_cc %}CC{% endif %} {% if video.published_at %}Video uploaded on {{ video.published_at }}{% endif %} {% if video.view_count == -1 %}HIDDEN{% else %}{{ video.view_count|intcomma }}{% endif %} {% if video.like_count == -1 %}HIDDEN{% else %}{{ video.like_count|intcomma }}{% endif %} {% if video.dislike_count == -1 %}HIDDEN{% else %}{{ video.dislike_count|intcomma }}{% endif %} {% if video.comment_count == -1 %}HIDDEN{% else %}{{ video.comment_count|intcomma }}{% endif %} {% if video.is_unavailable_on_yt or video.was_deleted_on_yt %}UNAVAILABLE{% endif %} Found in {{ video.playlistitem_set.count }} playlist{% if video.playlistitem_set.count > 1 %}s{% endif %}

Last updated {{ video.video_details_modified_at|naturalday }}{{ video.num_of_accesses }} clicks


{% endif %}

Your notes for this video


Video found in the following playlist{% if video.playlists.all.count > 1 %}s{% endif %}

{% for playlist in video.playlists.all %}
{{ playlist.name }} thumbnail
{{ playlist.name }}

{{ playlist.get_watched_videos_count }}/{{ playlist.get_watchable_videos_count }} viewed {% if playlist.get_watch_time_left != "0secs." %}{{ playlist.get_watch_time_left }} left{% endif %}

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

Last watched {{ playlist.last_watched|naturalday }}

{% endfor %}
{% endblock %}