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

{{ 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 %}
Are you sure?

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

{% if video.stats.dislike_count %}

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

{% endif %} {% if video.stats.average_rating %}

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

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

Description:

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

Playlist [{{ playlist_item.playlist_meta.current_idx|add:"1" }}]: {{ playlist_item.playlist_meta.playlist_name }}

{% endfor %} {% endif %}
{% endblock content %}