We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe97ba6 commit 875a9a1Copy full SHA for 875a9a1
1 file changed
python_appengine/user_uploads/index.html
@@ -0,0 +1,12 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <body>
4
+ <p>Videos uploaded by {{ channel_name }}: </p>
5
+ {% for video in videos %}
6
+ <img src="{{ video.snippet.thumbnails.default.url }}" style="padding-right: 15px">
7
+ <div style="vertical-align:top; display: inline-block">
8
+ <strong><a href="https://www.youtube.com/watch?v={{ video.id.videoId }}">{{ video.snippet.title }}</a></strong>
9
+ </div><br/><br/>
10
+ {% endfor %}
11
+ </body>
12
+</html>
0 commit comments