summaryrefslogtreecommitdiff
path: root/stapp/templates/video/list_videos.html
diff options
context:
space:
mode:
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%}