From 0eeeb3bc0919e657720bbe85832834134bb39dd9 Mon Sep 17 00:00:00 2001 From: Christophe Siraut Date: Fri, 10 Nov 2023 11:23:52 +0100 Subject: [PATCH] templates: remove unused program_detail.html --- aircox/templates/aircox/program_detail.html | 67 --------------------- 1 file changed, 67 deletions(-) delete mode 100644 aircox/templates/aircox/program_detail.html 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 %}