diff --git a/aircox/templates/aircox/program_detail.html b/aircox/templates/aircox/program_detail.html
deleted file mode 100644
index 267067b..0000000
--- a/aircox/templates/aircox/program_detail.html
+++ /dev/null
@@ -1,67 +0,0 @@
-{% extends "aircox/page_detail.html" %}
-{% comment %}Detail page of a show{% endcomment %}
-{% load i18n %}
-
-{% include "aircox/program_sidebar.html" %}
-
-
-{% block header_nav %}
-{% endblock %}
-
-
-{% block content %}
-{{ block.super }}
-
-{% with has_headline=False %}
-{% if articles %}
-
- {% translate "Articles" %}
-
- {% for object in articles %}
- {% include "aircox/widgets/page_item.html" %}
- {% endfor %}
-
-
-
-
-{% endif %}
-{% endwith %}
-
-{% endblock %}
-
-{% block sidebar %}
-
- {% translate "Diffusions" %}
- {% for schedule in program.schedule_set.all %}
- {{ schedule.get_frequency_display }}
- {% with schedule.start|date:"H:i" as start %}
- {% with schedule.end|date:"H:i" as end %}
-
- —
-
- {% endwith %}
- {% endwith %}
-
- {% if schedule.initial %}
- {% with schedule.initial.date as date %}
-
- ({% translate "Rerun" %})
-
- {% endwith %}
- {% endif %}
-
-
- {% endfor %}
-
-{{ block.super }}
-{% endblock %}