formatted

This commit is contained in:
root
2023-05-16 22:05:01 +02:00
parent e47a3c187b
commit 327600dacd
6 changed files with 186 additions and 213 deletions

View File

@@ -1,19 +1,13 @@
{% extends "base.html" %}
{% load static %}
{% block header %}UNUSUAL MEMES V{{video.id}}{% endblock %}
{% block content %}
{% block header %}UNUSUAL MEMES V{{ video.id }}{% endblock %}
{% block content %}
<div class="row mb-3">
<div class="col-12 justify-content-center">
<video width="100%" height="100%" controls autoplay>
<source src="/api/stream/?path=/media//{{ video.file }}" type="video/mp4">
<p>Your browser does not support the video tag.</p>
</video>
<div class="col-12 justify-content-center">
<video width="100%" height="100%" controls autoplay>
<source src="/api/stream/?path=/media//{{ video.file }}" type="video/mp4">
<p>Your browser does not support the video tag.</p>
</video>
</div>
</div>
</div>
{% endblock %}
{% endblock %}