Я хочу создать страницу, которая будет отображать все видео в папке stati c и сможет воспроизводить их (а не только перечислять имя видеофайла).
ОБНОВЛЕНИЕ 2:
view.py:
from django.shortcuts import render
from django.http import HttpResponse
import os
# Create your views here.
def index(request):
path="D:\\servers\\my_django\\src\\static\\"
video_list =os.listdir(path)
return render(request,'index.html', {'videos': video_list})
index. html:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
{% load static %}
{% for video in videos %}
<video width="320" height="240" preload controls>
<source src="{% static video %}" type="video/mp4" />
</video>
{% endfor %}
</body>
</html>