summaryrefslogtreecommitdiff
path: root/stapp/templates/video/list_videos.html
diff options
context:
space:
mode:
authorParth Buch2012-06-21 18:29:07 +0530
committerParth Buch2012-06-21 18:29:07 +0530
commita8a5b895358f0a85171f0d12424769785b4c73bc (patch)
tree7886b3269c7024f0f0c9ac4362dbf00c26f419be /stapp/templates/video/list_videos.html
parent9a82757fcde5f1795860b6a92638a3a815cb06ea (diff)
downloadstproject-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.html24
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%}