aircox/aircox/templates/aircox/widgets/podcast_item.html
2023-03-13 17:47:00 +01:00

18 lines
387 B
HTML

{% comment %}
List item for a podcast.
{% endcomment %}
{% load aircox %}
<div class="podcast">
{% comment %}
{% if object.embed %}
{{ object.embed|safe }}
{% else %}
<audio src="{{ object.file.url }}" controls>
{% endif %}
{% endcomment %}
<a-sound-item :data="{{ object|json }}" :player="player"
:actions="['play']">
</a-sound-item>
</div>