diff options
author | Parth Buch | 2012-07-17 14:22:06 +0530 |
---|---|---|
committer | Parth Buch | 2012-07-17 14:22:06 +0530 |
commit | 0830afbca9c2625936c4045788490128e693a78d (patch) | |
tree | b2c723265cf18b3b969f6d42394278bb5752d8b6 /stapp/templates/video/home.html | |
parent | 05ea9cf44d9666e134ce2ad0f7d81be7f18df15d (diff) | |
download | stproject-0830afbca9c2625936c4045788490128e693a78d.tar.gz stproject-0830afbca9c2625936c4045788490128e693a78d.tar.bz2 stproject-0830afbca9c2625936c4045788490128e693a78d.zip |
Posters applied to module videos as well
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 %} |