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

Video: {{ 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 }}

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

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

Rating: {{ video.stats.average_rating }}

{% if video.description %}

Description:

{{ video.description|linebreaks }}
{% endif %} {% endblock content %}