{% extends "aircox/page_detail.html" %}
{% comment %}Detail page of a show{% endcomment %}
{% load i18n aircox %}
{% block content %}
{% with schedules=object.schedule_set.all %}
{% if object.active and schedules %}
{% for schedule in schedules %}
{{ schedule.get_frequency_display }}
{% with schedule.start|date:"H:i" as start %}
{% with schedule.end|date:"H:i" as end %}
—
{% endwith %}
{% endwith %}
{% if schedule.is_rerun %}
{% with schedule.initial.date as date %}
({% translate "Rerun" %})
{% endwith %}
{% endif %}