{% extends "base.html" %} {% block title %}{{ video.name }} - {{ domain }}{% endblock %} {% block content %}

{{ video.name }}

By: {{ video.channel.displayName }} ({{ video.channel.ownerAccount.name }}@{{ video.channel.ownerAccount.host }})
{% if video.no_quality_selected and not embed %}

Please select a resolution:

{% elif embed %}
Resolutions: {% else %}
Resolutions: {% endif %} {% for resolution in video.resolutions %} {{ resolution.label }} {% endfor %} Embedded
Views: {{ video.views }} Likes: {{ video.likes }} Dislikes: {{ video.dislikes }}

{{ video.description }}

Category {{ video.category.label }}
License {{ video.licence.label }}
Language {{ video.language.label }}
Privacy {{ video.privacy.label }}
Tags {% for tag in video.tags %} {{ tag }} {% endfor %}



{% if video.commentsEnabled %} {{ comments.total }} Comments

{% for comment in comments.data %} {% if not comment.isDeleted %} {{ comment.account.displayName }}
{{ comment.text }}
{% else %}
Unknown
Deleted Comment
{% endif %} {% if comment.totalReplies == 1 %} 1 Reply {% else %} {{ comment.totalReplies }} Replies {% endif %}

{% endfor %} {% else %} Comments disabled. {% endif %} {% endblock %}