unusualarchive/core/templates/view.html
2023-05-16 22:05:01 +02:00

14 lines
451 B
HTML

{% extends "base.html" %}
{% load static %}
{% 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>
</div>
{% endblock %}