instance1 / templates /film_player.html
ChandimaPrabath's picture
fix
b6642bd
raw
history blame
400 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
</head>
<body>
<h1>{{ title }}</h1>
<video controls width="100%" height="auto">
<source src="{{ cached_url }}" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>