{% extends "frontend/base.html" %} {% load random %} {% load playlists %} {% block content %}

{{object.title}}

{% if playlist %}{% next_video playlist object as next %}{% endif %}

Description

{{object.description|linebreaksbr}}

{% if object.playlist_set.all %}
Part of Playlists {% for pl in object.playlist_set.all %} {{pl.title}} {% endfor %}

{% endif %} {% if object.tags %}
Tags {% for tag in object.tags %} {{tag}} {% endfor %}

{% endif %}
Date {{ object.published.date }}
{% if playlist %}

Other videos in {{playlist.title}}

{% endif %}

Random Videos

{% endblock %} {% block scripts %} {% endblock %}