aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/watch.html
diff options
context:
space:
mode:
Diffstat (limited to 'youtube/templates/watch.html')
-rw-r--r--youtube/templates/watch.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html
index f00413d..122958c 100644
--- a/youtube/templates/watch.html
+++ b/youtube/templates/watch.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% import "common_elements.html" as common_elements %}
{% block page_title %}{{ title }}{% endblock %}
{% block style %}
main{
@@ -200,7 +201,9 @@
<nav id="related">
-{{ related|safe }}
+ {% for info in related %}
+ {{ common_elements.item(info) }}
+ {% endfor %}
</nav>
{% endblock main %}