{% extends 'base.html' %} {% load static %} {% block title %}{{ video.title }} - YouTube Clone{% endblock %} {% block content %}

{{ video.title }}

{{ video.views }} views • {{ video.upload_date|timesince }} ago
{% if video.uploader.userprofile.profile_picture %} {{ video.uploader.username }} {% else %}
{% endif %}
{{ video.uploader.username }}
{{ video.uploader.userprofile.subscriber_count }} subscribers
{% if user.is_authenticated and user != video.uploader %} {% endif %}
Description

{{ video.description|linebreaks }}

{% if video.tags %}
{% for tag in video.tag_list %} {{ tag }} {% endfor %}
{% endif %}
Comments ({{ comments.count }})
{% if user.is_authenticated %}
{% csrf_token %}
{{ comment_form.text }}
{% else %}

Login to add a comment.

{% endif %}
{% include 'videos/comments_partial.html' %}
Related Videos
{% for related_video in related_videos %}
{% if related_video.thumbnail %} {{ related_video.title }} {% else %}
{% endif %}
{{ related_video.title|truncatechars:40 }}

{{ related_video.uploader.username }}

{{ related_video.views }} views • {{ related_video.upload_date|timesince }} ago

{% empty %}

No related videos found.

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}