{% extends "aircox/widgets/page_item.html" %}
{% comment %}
List item for an episode.
Context variables:
- object: episode
- diffusion: episode's diffusion
- hide_schedule: if True, do not display start time
{% endcomment %}
{% load i18n easy_thumbnails_tags aircox %}
{% block title %}
{% if not object.is_published and object.program.is_published %}
{{ object.program.title }}
{% if diffusion %}
—
{{ diffusion.start|date:"d F" }}
{% endif %}
{% else %}
{{ block.super }}
{% endif %}
{% endblock %}
{% block subtitle %}
{{ block.super }}
{% if diffusion %}
{% if not hide_schedule %}
{% if object.category %}—{% endif %}
{% endif %}
{% if diffusion.initial %}
{% with diffusion.initial.date as date %}
{% translate "(rerun)" %}
{% endwith %}
{% endif %}
{% endif %}
{% endblock %}
{% block actions %}
{% has_perm page object.program.change_permission_codename simple=True as can_edit %}
{% if can_edit %}
{% endif %}
{% if object.sound_set.public.count %}
{% endif %}
{% endblock %}