{% extends "./page.html" %}
{% load i18n aircox %}
{% comment %}
List item for a log, either for a logged track or diffusion (as diffusion).
Context objects:
- object: object to render
- hide_schedule: if true, hide the schedule
In case of modification, you might want to check on `assets/vue/player.vue`
for design review.
{% endcomment %}
{% block outer %}
{% if object|is_diffusion %}
{% include "./diffusion.html" with object=diffusion.episode %}
{% else %}
{% include "aircox/widgets/track_item.html" with object=object.track log=object %}
{% endif %}
{% endblock %}