14 lines
378 B
HTML
14 lines
378 B
HTML
{% extends 'default/templates/renderable/upload.html' %}
|
|
|
|
{% block fileview %}
|
|
<video
|
|
controls
|
|
{% if content.description %}
|
|
title="{{ content.description }}"
|
|
{% endif %}
|
|
>
|
|
<source src={{ content.url('raw') }} type="{{ content.media_type }}" />
|
|
Video playback not supported by your browser.
|
|
</video>
|
|
{% endblock %}
|