20 lines
435 B
HTML
20 lines
435 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 %}
|