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

{{object.title}}

Description

{{object.description|linebreaksbr}}

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

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

Date {{ object.published.date }}
{% for playlist in object.playlist_set.all %}

Other videos in {{playlist.title}}

{% endfor %}

Random Videos

{% endblock %}