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