We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19d760d commit 76daecbCopy full SHA for 76daecb
python_appengine/search/index.html
@@ -0,0 +1,21 @@
1
+<!DOCTYPE html>
2
+{% autoescape true %}
3
+<html>
4
+ <body>
5
+ <p>Videos: </p>
6
+ {% for video in videos %}
7
+ {{ video }}<br>
8
+ {% endfor %}
9
+
10
+ <p>Channels:</p>
11
+ {% for channel in channels %}
12
+ {{ channel }} <br>
13
14
15
+ <p>Playlists:</p>
16
+ {% for playlist in playlists %}
17
+ {{ playlist }} <br>
18
19
+ </body>
20
+</html>
21
+{% endautoescape %}
0 commit comments