{% extends "home/base.html" %} {% block content %} {% load static %} {% load humanize %}

{{ video.title }}

{{ video.channel.channel_name }}

{% if video.channel.channel_subs >= 1000000 %}

Subscribers: {{ video.channel.channel_subs|intword }}

{% else %}

Subscribers: {{ video.channel.channel_subs|intcomma }}

{% endif %}

Published: {{ video.published }}

Last refreshed: {{ video.vid_last_refresh }}

Watched: {% if video.player.watched %} seen-icon {% else %} unseen-icon {% endif %}

{% if video.active %}

Youtube: Active

{% else %}

Youtube: Deactivated

{% endif %}

Video ID: {{ video.youtube_id }}

Are you sure?

Views: {{ video.stats.view_count|intcomma }}

thumbs-down: {{ video.stats.dislike_count|intcomma }}

{% if video.stats.average_rating %}

Rating: {% for star in video.stats.average_rating %} {{ star }} {% endfor %}

{% endif %}
{% if video.description %}

Description:

{{ video.description|linebreaks }}
{% endif %} {% for playlist_item in playlist_nav %}

Playlist: {{ playlist_item.playlist_meta.playlist_name }}

{% if playlist_item.playlist_previous %} previous thumbnail {% endif %}
{% if playlist_item.playlist_next %} previous thumbnail {% endif %}
{% endfor %} {% endblock content %}