diff options
Diffstat (limited to 'helsinki/program/templates')
21 files changed, 0 insertions, 526 deletions
diff --git a/helsinki/program/templates/404.html b/helsinki/program/templates/404.html deleted file mode 100644 index 6281ba0..0000000 --- a/helsinki/program/templates/404.html +++ /dev/null @@ -1,7 +0,0 @@ -{% extends "base.html" %} - -{% block title %}Seite nicht gefunden{% endblock %} - -{% block content %} - <p>Es tut uns leid, aber die angeforderte Seite konnte nicht gefunden werden.</p> -{% endblock %}
\ No newline at end of file diff --git a/helsinki/program/templates/500.html b/helsinki/program/templates/500.html deleted file mode 100644 index 98074ab..0000000 --- a/helsinki/program/templates/500.html +++ /dev/null @@ -1,11 +0,0 @@ -{% extends "base.html" %} - -{% block title %}Serverfehler{% endblock %} - -{% block content %} - <p> - Ein Fehler ist aufgetreten. - Dieser Fehler wurde an die Serververwalter per E-Mail gemeldet und sollte in Kürze behoben sein. - Vielen Dank für Ihr Verständnis. - </p> -{% endblock %}
\ No newline at end of file diff --git a/helsinki/program/templates/base.html b/helsinki/program/templates/base.html deleted file mode 100644 index 2ed539e..0000000 --- a/helsinki/program/templates/base.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> - -<head> - <title>{% block title %}{% endblock %}</title> -</head> - -<body> -{% block content %}{% endblock %} -</body> - -</html>
\ No newline at end of file diff --git a/helsinki/program/templates/program/box_broadcastformat.html b/helsinki/program/templates/program/box_broadcastformat.html deleted file mode 100644 index 20e914f..0000000 --- a/helsinki/program/templates/program/box_broadcastformat.html +++ /dev/null @@ -1,10 +0,0 @@ -{% if broadcastformats %} -<dl id="broadcastformat" class="portlet"> - <dt class="portletHeader"><span>Legende<span></dt> - {% for broadcastformat in broadcastformats %} - <dd class="portletItem bcformat bf-{{ broadcastformat.slug }}"> - <a href="?broadcastformat={{ broadcastformat.slug }}">{{ broadcastformat.format }}</a> - </dd> - {% endfor %} -</dl> -{% endif %} diff --git a/helsinki/program/templates/program/box_musicfocus.html b/helsinki/program/templates/program/box_musicfocus.html deleted file mode 100644 index da2c90f..0000000 --- a/helsinki/program/templates/program/box_musicfocus.html +++ /dev/null @@ -1,14 +0,0 @@ -{% if musicfoci %} -<dl id="filterbox_musicfocus" class="portlet filterbox"> - <dt class="portletHeader"><span>Musiktendenz<span></dt> - <dd class="portletItem"> - <ul> - {% for item in musicfoci %} - <li class="mf-{{ item.abbrev }}"> - <a href="?musicfocus={{ item.slug }}">{{ item }}</a> - </li> - {% endfor %} - </ul> - </dd> -</dl> -{% endif %} diff --git a/helsinki/program/templates/program/box_showinformation.html b/helsinki/program/templates/program/box_showinformation.html deleted file mode 100644 index a3171d0..0000000 --- a/helsinki/program/templates/program/box_showinformation.html +++ /dev/null @@ -1,14 +0,0 @@ -{% if showinformations %} -<dl id="filterbox_showinformation" class="portlet filterbox"> - <dt class="portletHeader"><span>Sendungsinfo<span></dt> - <dd class="portletItem"> - <ul> - {% for item in showinformations %} - <li class="si-{{ item.abbrev }}"> - <a href="?showinformation={{ item.slug }}">{{ item }}</a> - </li> - {% endfor %} - </ul> - </dd> -</dl> -{% endif %} diff --git a/helsinki/program/templates/program/box_showtopic.html b/helsinki/program/templates/program/box_showtopic.html deleted file mode 100644 index 79e9519..0000000 --- a/helsinki/program/templates/program/box_showtopic.html +++ /dev/null @@ -1,14 +0,0 @@ -{% if showtopics %} -<dl id="filterbox_showtopic" class="portlet filterbox"> - <dt class="portletHeader"><span>Thema / Schwerpunkt<span></dt> - <dd class="portletItem"> - <ul> - {% for item in showtopics %} - <li class="st-{{ item.abbrev }}"> - <a href="?showtopic={{ item.slug }}">{{ item }}</a> - </li> - {% endfor %} - </ul> - </dd> -</dl> -{% endif %} diff --git a/helsinki/program/templates/program/current_box.html b/helsinki/program/templates/program/current_box.html deleted file mode 100644 index a2341d3..0000000 --- a/helsinki/program/templates/program/current_box.html +++ /dev/null @@ -1,42 +0,0 @@ -<!doctype html> -<html> -<head> - <meta charset="utf-8"/> - <title>Current program box</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> -<body> - - {% if current or next or after_next %} - <dl class="portlet program-current"> - <dt class="portletHeader">Programm derzeit</dt> - <dd class="portletItem current-timeslot"> - <div class="start">{{ current.start|date:"H:i" }}</div> - <div class="show {{ current.show.broadcastformat.slug }}"> - <div class="name"><a href="{% url timeslot-detail current.id %}">{{ current.show.name }}</a></div> - {% if current.note %} - <div class="note-title">{{ current.note.title }}</div> - {% else %} - {% if current.show.short_description != 'FIXME' %} - <div class="short-description">{{ current.show.short_description }}</div> - {% endif %} - {% endif %} - </div> - </dd> - <dd class="portletItem next-timeslot"> - <div class="start">{{ next.start|date:"H:i" }}</div> - <div class="show {{ next.show.broadcastformat.slug }}"> - <div class="name"><a href="{% url timeslot-detail next.id %}">{{ next.show.name }}</a></div> - </div> - </dd> - <dd class="portletItem next-timeslot"> - <div class="start">{{ after_next.start|date:"H:i" }}</div> - <div class="show {{ after_next.show.broadcastformat.slug }}"> - <div class="name"><a href="{% url timeslot-detail after_next.id %}">{{ after_next.show.name }}</div></a> - </div> - </dd> - </dl> - {% endif %} - -</body> -</html> diff --git a/helsinki/program/templates/program/day_schedule.html b/helsinki/program/templates/program/day_schedule.html deleted file mode 100644 index a0e1ac4..0000000 --- a/helsinki/program/templates/program/day_schedule.html +++ /dev/null @@ -1,60 +0,0 @@ -<html> -<head> - <title>Day schedule: {{ day|date:"l, d.m.Y" }}</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> - -<body> - -<div id="calendar"></div> - -{% load content_boxes %} -<div id="filter-format"> -{% broadcastformat %} -</div> -<div id="filter-topic"> - <dl id="filter-header" class="portlet"> - <dt class="portletHeader"><span>Filter<span></dt> - </dl> -{% musicfocus %} -{% showinformation %} -{% showtopic %} -</div> - -<div id="content-main" class="day-schedule"> - <h2>Tagesansicht</h2> - <h1 id="date">{{ day|date:"l, d.m.Y" }}</h1> - - <div id="timeslots"> - {% for timeslot in timeslots %} - <div class="timeslot bcformat-{{ timeslot.show.broadcastformat.slug }}"> - <div class="start">{{ timeslot.start|date:"H:i" }}</div> - <div class="show-abbrevs"> - {% for showinformation in timeslot.show.showinformation.all %} - <span class="si-{{ showinformation.abbrev }}">{{ showinformation.abbrev }}</span> - {% endfor %} - {% for showtopic in timeslot.show.showtopic.all %} - <span class="st-{{ showtopic.abbrev }}">{{ showtopic.abbrev }}</span> - {% endfor %} - {% for musicfocus in timeslot.show.musicfocus.all %} - <span class="mf-{{ musicfocus.abbrev }}">{{ musicfocus.abbrev }}</span> - {% endfor %} - </div> - <div class="show"> - <h3 class="name"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></h3> - {% if timeslot.note %} - <p class="note-title"><strong>Heute:</strong> {{ timeslot.note.title }}</p> - {% else %} - {% if timeslot.show.short_description != 'FIXME' %} - <p class="short-description">{{ timeslot.show.short_description }}</p> - {% endif %} - {% endif %} - </div> - </div> - {% endfor %} - </div> -</div> - - -</body> -</html> diff --git a/helsinki/program/templates/program/host_detail.html b/helsinki/program/templates/program/host_detail.html deleted file mode 100644 index d28f582..0000000 --- a/helsinki/program/templates/program/host_detail.html +++ /dev/null @@ -1,29 +0,0 @@ -<html> -<head> - <title>Host detail: {{ host.name }}</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> -<body> - -<div id="content-main" class="host-detail"> - <div id="name">{{ host.name }}</div> - - <div id="shows"> - <div id="shows-title">Sendungen</div> - - {% for show in host.shows.all %} - <div class="show {{ show.broadcastformat.slug }}"><a href="{% url show-detail show.slug %}">{{ show }}</a></div> - {% endfor %} - </div> - - {% if host.email %} - <div id="email">E-Mail Adresse: <a href="{{ host.email }}">{{ host.email }}</a></div> - {% endif %} - - {% if host.website %} - <div id="website">Website: <a href="{{ host.website }}">{{ host.website }}</a></div> - {% endif %} -</div> - -</body> -</html> diff --git a/helsinki/program/templates/program/host_list.html b/helsinki/program/templates/program/host_list.html deleted file mode 100644 index 9b83b29..0000000 --- a/helsinki/program/templates/program/host_list.html +++ /dev/null @@ -1,17 +0,0 @@ -<html> -<head> - <title>Host list</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> -<body> - -<div id="content-main" class="host-list"> -{% for host in host_list %} - <div class="host"> - <a href="{% url host-detail host.id %}">{{ host.name }}</a> - </div> -{% endfor %} -</div> - -</body> -</html> diff --git a/helsinki/program/templates/program/recommendations.html b/helsinki/program/templates/program/recommendations.html deleted file mode 100644 index 85ec16e..0000000 --- a/helsinki/program/templates/program/recommendations.html +++ /dev/null @@ -1,24 +0,0 @@ -<html> -<head> - <title>Recomendations</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> -<body> - -<div id="content-main" class="recommendations"> - <div id="recommendations-title">Programmhinweise</div> -{% for recommendation in recommendation_list %} - <div class="recommendation {{ recommendation.show.broadcastformat.slug }}"> - <div class="timeslot-start-end">{{ recommendation.timeslot.start|date:"d.m. H:i" }}-{{ recommendation.timeslot.end|date:"H:i" }}</div> - <div class="show-name"><a href="{% url show-detail recommendation.show.slug %}">{{ recommendation.show.name }}</a></div> - {% if recommendation.show.short_description != 'FIXME' %} - <div class="show-short-description">{{ recommendation.show.short_description }}</div> - {% endif %} - <div class="note-title"><a href="{% url timeslot-detail recommendation.timeslot.id %}">{{ recommendation.title }}</a></div> - <div class="note-content">{{ recommendation.content|safe}}</div> - </div> -{% endfor %} -</div> - -</body> -</html> diff --git a/helsinki/program/templates/program/recommendations_box.html b/helsinki/program/templates/program/recommendations_box.html deleted file mode 100644 index abcbe03..0000000 --- a/helsinki/program/templates/program/recommendations_box.html +++ /dev/null @@ -1,22 +0,0 @@ -<!doctype html> -<html> -<head> - <meta charset="utf-8"/> - <title>Recomendations box</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> -<body> - {% if recommendation_list %} - <dl id="recommendations" class="portlet program-recommendations"> - <dt class="portletHeader">Programmhinweise</dt> - {% for recommendation in recommendation_list %} - <dd class="portletItem program-recommendation {{ recommendation.show.broadcastformat.slug }}"> - <h3 class="show-name"><a href="{% url show-detail recommendation.show.slug %}">{{ recommendation.show.name }}</a></h3> - <p class="timeslot-start-end">{{ recommendation.timeslot.start|date:"d.m. H:i" }}-{{ recommendation.timeslot.end|date:"H:i" }}</p> - <p class="note-title"><a href="{% url timeslot-detail recommendation.timeslot.id %}">{{ recommendation.title }}</a></p> - </dd> - {% endfor %} - </dl> - {% endif %} -</body> -</html> diff --git a/helsinki/program/templates/program/show_detail.html b/helsinki/program/templates/program/show_detail.html deleted file mode 100644 index 0238ad3..0000000 --- a/helsinki/program/templates/program/show_detail.html +++ /dev/null @@ -1,64 +0,0 @@ -<html> -<head> - <title>Show detail: {{ show.name }}</title> -</head> -<body> - -<div id="calendar"></div> - -<div id="content-main" class="show-detail"> - - <h1 id="name">{{ show.name }}</h1> - - {% if show.short_description != 'FIXME' %} - <div id="short-description" class="documentDescription">{{ show.short_description }}</div> - {% endif %} - - <div id="abbrevs"> - {% for topic in show.showtopic.all %} - <span class="topic-abbrev">{{ topic.abbrev }}</span> - {% endfor %} - - {% for information in show.showinformation.all %} - <span class="information-abbrev">{{ information.abbrev }}</span> - {% endfor %} - - {% for focus in show.musicfocus.all %} - <span class="focus-abbrev">{{ focus.abbrev }}</span> - {% endfor %} - - <span class="broadcastformat-abbrev">{{ show.broadcastformat.abbrev }}</span> - </div> - - <div id="programslots"> - {% for slot in show.programslots.all %} - <div class="programslot">{{ slot }}</div> - {% endfor %} - </div> - - <div id="broadcastformat">{{ show.broadcastformat.format }}</div> - - <div id="hosts"> - {% for host in show.hosts.all %} - <div class="host">{{ host }}</div> - {% endfor %} - </div> - - - <div id="description">{{ show.description|safe }}</div> - - {% if show.email %} - <div id="email"><a href="mailto:{{ show.email }}">{{ show.email }}</a></div> - {% endif %} - - {% if show.website %} - <div id="website"><a href="{{ show.website }}">{{ show.website }}</a></div> - {% endif %} - - {% if show.cba_series_id %} - <div id="cba-series-id"><a href="http://cba.fro.at/series/{{ show.cba_series_id }}">CBA</a></div> - {% endif %} -</div> - -</body> -</html> diff --git a/helsinki/program/templates/program/show_list.html b/helsinki/program/templates/program/show_list.html deleted file mode 100644 index 6fe6525..0000000 --- a/helsinki/program/templates/program/show_list.html +++ /dev/null @@ -1,58 +0,0 @@ -<html> -<head> - <title>Show list</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> -<body> - -{% load content_boxes %} -<div id="filter-format"> -{% broadcastformat %} -</div> -<div id="filter-topic"> - <dl id="filter-header" class="portlet"> - <dt class="portletHeader"><span>Filter<span></dt> - </dl> -{% musicfocus %} -{% showinformation %} -{% showtopic %} -</div> - -<div id="content-main" class="show-list"> -{% for show in show_list %} - <div class="show"> - <div class="abbrevs"> - {% for topic in show.showtopic.all %} - <span class="topic-abbrev">{{ topic.abbrev }}</span> - {% endfor %} - - {% for information in show.showinformation.all %} - <span class="information-abbrev">{{ information.abbrev }}</span> - {% endfor %} - - {% for focus in show.musicfocus.all %} - <span class="focus-abbrev">{{ focus.abbrev }}</span> - {% endfor %} - - <span class="broadcastformat-abbrev">{{ show.broadcastformat.abbrev }}</span> - </div> - - <div class="details"> - <div class="name"><a href="{% url show-detail show.slug %}">{{ show.name }}</a></div> - - <div class="programslots"> - {% for slot in show.programslots.all %} - <div class="programslot">{{ slot }}</div> - {% endfor %} - </div> - - {% if show.short_description != 'FIXME' %} - <div class="short-description">{{ show.short_description }}</div> - {% endif %} - </div> - </div> -{% endfor %} -</div> - -</body> -</html> diff --git a/helsinki/program/templates/program/timeslot_detail.html b/helsinki/program/templates/program/timeslot_detail.html deleted file mode 100644 index 04d56c2..0000000 --- a/helsinki/program/templates/program/timeslot_detail.html +++ /dev/null @@ -1,58 +0,0 @@ -<html> -<head> - <title>Timeslot detail: {{ timeslot }}</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> -<body> - -<div id="content-main" class="timeslot-detail"> - <h1 id="show-name">{{ timeslot.show.name }}</h1> - - {% if timeslot.show.short_description != 'FIXME' %} - <div id="short-description" class="documentDescription">{{ timeslot.show.short_description }}</div> - {% endif %} - - <div id="abbrevs"> - {% for topic in timeslot.show.showtopic.all %} - <span class="topic-abbrev">{{ topic.abbrev }}</span> - {% endfor %} - - {% for information in timeslot.show.showinformation.all %} - <span class="information-abbrev">{{ information.abbrev }}</span> - {% endfor %} - - {% for focus in timeslot.show.musicfocus.all %} - <span class="focus-abbrev">{{ focus.abbrev }}</span> - {% endfor %} - - <span class="broadcastformat-abbrev">{{ timeslot.show.broadcastformat.abbrev }}</span> - </div> - - <div id="programslots"> - {% for slot in timeslot.show.programslots.all %} - <div class="programslot">{{ slot }}</div> - {% endfor %} - </div> - - <div id="broadcastformat">{{ timeslot.show.broadcastformat.format }}</div> - - <div id="hosts"> - {% for host in timeslot.show.hosts.all %} - <div class="host"><a href="{% url host-detail host.id %}">{{ host }}</a></div> - {% endfor %} - </div> - - <div id="description">{{ timeslot.show.description|safe }}</div> - - <div id="note"> - {% if timeslot.note %} - <div class="note"> - <div class="title">{{ timeslot.note.title }}</div> - <div class="content">{{ timeslot.note.content|safe }}</div> - </div> - {% endif %} - </div> -</div> - -</body> -</html> diff --git a/helsinki/program/templates/program/week_schedule.html b/helsinki/program/templates/program/week_schedule.html deleted file mode 100644 index 76aed5a..0000000 --- a/helsinki/program/templates/program/week_schedule.html +++ /dev/null @@ -1,61 +0,0 @@ -<html> -<head> - <title>Week schedule</title> - <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> -</head> - -<body> - -<div id="content-main" class="week-schedule"> - <div id="monday"> - <div class="weekday">{{ monday|date:"l d.m.Y" }}</div> - {% for timeslot in monday_timeslots %} - <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div> - {% endfor %} - </div> - - <div id="tuesday"> - <div class="weekday">{{ tuesday|date:"l d.m.Y" }}</div> - {% for timeslot in tuesday_timeslots %} - <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div> - {% endfor %} - </div> - - <div id="wednesday"> - <div class="weekday">{{ wednesday|date:"l d.m.Y" }}</div> - {% for timeslot in wednesday_timeslots %} - <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div> - {% endfor %} - </div> - - <div id="thursday"> - <div class="weekday">{{ thursday|date:"l d.m.Y" }}</div> - {% for timeslot in thursday_timeslots %} - <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div> - {% endfor %} - </div> - - <div id="friday"> - <div class="weekday">{{ friday|date:"l d.m.Y" }}</div> - {% for timeslot in friday_timeslots %} - <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div> - {% endfor %} - </div> - - <div id="saturday"> - <div class="weekday">{{ saturday|date:"l d.m.Y" }}</div> - {% for timeslot in saturday_timeslots %} - <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div> - {% endfor %} - </div> - - <div id="sunday"> - <div class="weekday">{{ sunday|date:"l d.m.Y" }}</div> - {% for timeslot in sunday_timeslots %} - <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div> - {% endfor %} - </div> -</div> - -</body> -</html> diff --git a/helsinki/program/templates/search/indexes/program/note_SearchableText.txt b/helsinki/program/templates/search/indexes/program/note_SearchableText.txt deleted file mode 100644 index 2421b4f..0000000 --- a/helsinki/program/templates/search/indexes/program/note_SearchableText.txt +++ /dev/null @@ -1,2 +0,0 @@ -{{ object.title }} -{{ object.content }}
\ No newline at end of file diff --git a/helsinki/program/templates/search/indexes/program/note_text.txt b/helsinki/program/templates/search/indexes/program/note_text.txt deleted file mode 100644 index 2421b4f..0000000 --- a/helsinki/program/templates/search/indexes/program/note_text.txt +++ /dev/null @@ -1,2 +0,0 @@ -{{ object.title }} -{{ object.content }}
\ No newline at end of file diff --git a/helsinki/program/templates/search/indexes/program/show_SearchableText.txt b/helsinki/program/templates/search/indexes/program/show_SearchableText.txt deleted file mode 100644 index f08b515..0000000 --- a/helsinki/program/templates/search/indexes/program/show_SearchableText.txt +++ /dev/null @@ -1,3 +0,0 @@ -{{ object.name }} -{{ object.description }} -{{ object.short_description }}
\ No newline at end of file diff --git a/helsinki/program/templates/search/indexes/program/show_text.txt b/helsinki/program/templates/search/indexes/program/show_text.txt deleted file mode 100644 index f08b515..0000000 --- a/helsinki/program/templates/search/indexes/program/show_text.txt +++ /dev/null @@ -1,3 +0,0 @@ -{{ object.name }} -{{ object.description }} -{{ object.short_description }}
\ No newline at end of file |