diff options
author | Parth Buch | 2012-06-21 18:29:07 +0530 |
---|---|---|
committer | Parth Buch | 2012-06-21 18:29:07 +0530 |
commit | a8a5b895358f0a85171f0d12424769785b4c73bc (patch) | |
tree | 7886b3269c7024f0f0c9ac4362dbf00c26f419be /stapp/templates/video/list_videos.html | |
parent | 9a82757fcde5f1795860b6a92638a3a815cb06ea (diff) | |
download | stproject-a8a5b895358f0a85171f0d12424769785b4c73bc.tar.gz stproject-a8a5b895358f0a85171f0d12424769785b4c73bc.tar.bz2 stproject-a8a5b895358f0a85171f0d12424769785b4c73bc.zip |
Standardizing the code
Diffstat (limited to 'stapp/templates/video/list_videos.html')
-rw-r--r-- | stapp/templates/video/list_videos.html | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/stapp/templates/video/list_videos.html b/stapp/templates/video/list_videos.html deleted file mode 100644 index aebcc17..0000000 --- a/stapp/templates/video/list_videos.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends "base.html" %} - -<!DOCTYPE html> - -{% block title %} STProject {% endblock %} - - -{% block sidebar %} -{% for video in videos %} - <a href='/video/view/{{video.id}}'>{{ video.video_name }}</a><br> -{% endfor %} -{% endblock %} - -{% block video %} - - <video width="700" height="400" controls="controls"> - <source src="{{play.filename.url}}"> - </video> - - - - - -{% endblock%} |