pdnew/themes/default/templates/renderable/audio.html

14 lines
378 B
HTML
Raw Permalink Normal View History

{% extends 'default/templates/renderable/upload.html' %}
2024-10-22 15:02:22 +00:00
{% block fileview %}
<audio
controls
{% if content.description %}
title="{{ content.description }}"
{% endif %}
>
<source src={{ content.url('raw') }} type="{{ content.media_type }}" />
Audio playback not supported by your browser.
</audio>
{% endblock %}