diff options
Diffstat (limited to 'stapp/templates/video/home.html')
-rw-r--r-- | stapp/templates/video/home.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stapp/templates/video/home.html b/stapp/templates/video/home.html index 9a55eb0..427fedd 100644 --- a/stapp/templates/video/home.html +++ b/stapp/templates/video/home.html @@ -19,8 +19,8 @@ <div span="12"> <h2>{{module.name}}</h2> {% for video in module.video_list.all %} - <video width="150" height="150" controls="controls"> - <source src="{{video.filename.url}}" poster="{{video.thumbnail.url}}"> + <video width="150" height="150" controls="controls" poster="{{video.thumbnail.url}}"> + <source src="{{video.filename.url}}" > </video> {{video.name}} {% endfor %} |