{% extends "videos/base.html" %} {% load base_filters %} {% load base_tags %} {% load perm_tags %} {% load tagging_tags %} {% load video_tags %} {% load video_filters %} {% block title %}{{ video.title }} - {{ video.category|title }} Videos{% endblock %} {% block meta_description %}{{ video.category }} Videos from {{ SITE_GLOBAL_SITEDISPLAYNAME }} - {{ video.title }} - {{ video.description|striptags|truncatewords:40 }}{% endblock %} {% block content %}
{% tags_for_object video as tags %}

{{ video.title }}

{{ video|video_embed:"600" }}
{{ video.description|safe }}
{% if tags %}
Tags: {% for tag in tags %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %} {% if video.status_detail != "active" %} {{ video.status_detail }} {% endif %} {% video_options request.user video %}
{% endblock %}