diff options
author | parth | 2012-06-01 15:03:13 +0530 |
---|---|---|
committer | parth | 2012-06-01 15:03:13 +0530 |
commit | 2113f66de743877597d24e20df9ac1e828167277 (patch) | |
tree | 77b21ff4414d440aaa672377de796f818b9993c8 /stapp/templates/video/list_videos.html | |
download | stproject-2113f66de743877597d24e20df9ac1e828167277.tar.gz stproject-2113f66de743877597d24e20df9ac1e828167277.tar.bz2 stproject-2113f66de743877597d24e20df9ac1e828167277.zip |
Restart of project. Most of the changes have been done by @Jayparikh111
Diffstat (limited to 'stapp/templates/video/list_videos.html')
-rw-r--r-- | stapp/templates/video/list_videos.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/stapp/templates/video/list_videos.html b/stapp/templates/video/list_videos.html new file mode 100644 index 0000000..6afa596 --- /dev/null +++ b/stapp/templates/video/list_videos.html @@ -0,0 +1,24 @@ +{% 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.video_file.url}}"> + </video> {{ play.id }} + + + + + +{% endblock%} |