﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35168	Problem with templates and the <video></video> tag	Estuardo Ramírez	nobody	"The templates have a problem because when you create a <video></video> tag it plays the video but when the tag has ""controls"" controls, it does not allow the video to go forward or backward and it is a problem since you cannot do anything, not even using js or css code.

And NO, it is not a browser compatibility problem, no matter what browser you do it in, it doesn't work, whether you use static, media or whatever you use, it doesn't work.
If you run this code in Django:

{{{
{% load static %}
<!DOCTYPE html>
<html lang=""es"">
<head>
    <meta charset=""UTF-8"">
    <meta name=""viewport"" content=""width=device-width, initial-scale=1.0"">
    <title>Document</title>
</head>
<body>
    <video width=""640"" height=""360"" controls>
        <source src=""{% static ""prueba.mp4"" %}"" type=""video/mp4"">
        Tu navegador no soporta el tag de video.
    </video>
</body>
</html>
}}}


It doesn't work, that is, the video plays but it doesn't let you rewind or fast forward the video.
And if you run that code in a simple html file without all that magic it works perfectly.

The error has been around for many versions, I have already tried it with different versions. I noticed this error thanks to the Django community in Spanish on Telegram"	Bug	closed	Template system	5.0	Normal	worksforme	templates, video tag, bug		Unreviewed	0	0	0	0	0	0
