{% extends 'base.html' %} {% load humanize %} {% load static %} {% block content %}
{% if playlist.has_playlist_changed %} {% else %}
{% if not video.is_unavailable_on_yt and not video.was_deleted_on_yt %}
{% endif %}

{{ video.name }} {% if video.is_unavailable_on_yt or video.was_deleted_on_yt %} {% endif %}
{% if video.user_label %}a.k.a {{ video.user_label }}{% endif %}

{% if not video.is_unavailable_on_yt and not video.was_deleted_on_yt %}
by {{ video.channel_name }}

{% if video.description %}

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

{% endif %}
{% if not video.is_unavailable_on_yt and not video.was_deleted_on_yt %}
{% endif %} {% if not video.is_unavailable_on_yt and not video.was_deleted_on_yt %} {% 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 %} {% endif %} {% if video.is_unavailable_on_yt or video.was_deleted_on_yt %}VIDEO WENT UNAVAILABLE ON YT{% endif %} Found in {{ video.playlists.all.count }} playlist{% if video.playlists.all.count > 1 or video.playlists.all.count == 0 %}s{% endif %} {% if video.is_marked_as_watched %} marked watched {% endif %}

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


{% endif %}

Your notes for this video


{% if video.playlists.all.count != 0 %}

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

{% include 'intercooler/playlists.html' with playlists=video.playlists.all watching=False bg_color="#357779" show_controls=True %}
{% endif %} {% endblock %}