diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-23 18:02:14 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-23 18:02:14 (GMT) |
commit | 4590065b6ca9d7698c22277a4da1505486c8b637 (patch) | |
tree | 2a76ad1a0c1cced08fdcf2139f1e12796522b090 /helsinki/templates/program/week_schedule.html | |
parent | c95ec9e6bea9e076bda3ae66c4b604f399f5ec86 (diff) |
moved things around.
Diffstat (limited to 'helsinki/templates/program/week_schedule.html')
-rw-r--r-- | helsinki/templates/program/week_schedule.html | 127 |
1 files changed, 0 insertions, 127 deletions
diff --git a/helsinki/templates/program/week_schedule.html b/helsinki/templates/program/week_schedule.html deleted file mode 100644 index 456b0ae..0000000 --- a/helsinki/templates/program/week_schedule.html +++ /dev/null @@ -1,127 +0,0 @@ -<html> -<head> - <title>Wochenansicht — Radio Helsinki - Freies Radio Graz</title> -</head> - -<body> - -<div id="content-main" class="week-schedule"> - <table class="week-navigation"> - <tr> - <td><a href="/program/{{ last_w }}"><--</a></td> - <td class="current">{{ cur_w }}</td> - <td><a href="/program/{{ next_w1 }}">{{ next_w1 }}</a></td> - <td><a href="/program/{{ next_w2 }}">{{ next_w2 }}</a></td> - <td><a href="/program/{{ next_w3 }}">{{ next_w3 }}</a></td> - <td><a href="/program/{{ next_w4 }}">{{ next_w4 }}</a></td> - <td><a href="/program/{{ next_w1 }}">--></a></td> - </tr> - </table> - <div class="weekday-starts weekday-starts-left"> - <div style="height: 43px;"> </div> - <div style="height: 60px;">06:00</div> - <div style="height: 60px;">07:00</div> - <div style="height: 60px;">08:00</div> - <div style="height: 60px;">09:00</div> - <div style="height: 60px;">10:00</div> - <div style="height: 60px;">11:00</div> - <div style="height: 60px;">12:00</div> - <div style="height: 60px;">13:00</div> - <div style="height: 60px;">14:00</div> - <div style="height: 60px;">15:00</div> - <div style="height: 60px;">16:00</div> - <div style="height: 60px;">17:00</div> - <div style="height: 60px;">18:00</div> - <div style="height: 60px;">19:00</div> - <div style="height: 60px;">20:00</div> - <div style="height: 60px;">21:00</div> - <div style="height: 60px;">22:00</div> - <div style="height: 60px;">23:00</div> - <div style="height: 60px;">00:00</div> - <div style="height: 60px;">01:00</div> - <div style="height: 60px;">02:00</div> - <div style="height: 60px;">03:00</div> - <div style="height: 60px;">04:00</div> - <div style="height: 60px;">05:00</div> - </div> - <div id="monday" class="weekday weekday-first"> - <h2>{{ monday|date:"l d.m.Y" }}</h2> - {% for timeslot in monday_timeslots %} - {% include "program/week_schedule_timeslot.html" %} - {% endfor %} - </div> - - <div id="tuesday" class="weekday"> - <h2>{{ tuesday|date:"l d.m.Y" }}</h2> - {% for timeslot in tuesday_timeslots %} - {% include "program/week_schedule_timeslot.html" %} - {% endfor %} - </div> - - <div id="wednesday" class="weekday"> - <h2>{{ wednesday|date:"l d.m.Y" }}</h2> - {% for timeslot in wednesday_timeslots %} - {% include "program/week_schedule_timeslot.html" %} - {% endfor %} - </div> - - <div id="thursday" class="weekday"> - <h2>{{ thursday|date:"l d.m.Y" }}</h2> - {% for timeslot in thursday_timeslots %} - {% include "program/week_schedule_timeslot.html" %} - {% endfor %} - </div> - - <div id="friday" class="weekday"> - <h2>{{ friday|date:"l d.m.Y" }}</h2> - {% for timeslot in friday_timeslots %} - {% include "program/week_schedule_timeslot.html" %} - {% endfor %} - </div> - - <div id="saturday" class="weekday"> - <h2>{{ saturday|date:"l d.m.Y" }}</h2> - {% for timeslot in saturday_timeslots %} - {% include "program/week_schedule_timeslot.html" %} - {% endfor %} - </div> - - <div id="sunday" class="weekday weekday-last"> - <h2>{{ sunday|date:"l d.m.Y" }}</h2> - {% for timeslot in sunday_timeslots %} - {% include "program/week_schedule_timeslot.html" %} - {% endfor %} - </div> - - <div class="weekday-starts weekday-starts-right"> - <div style="height: 43px;"> </div> - <div style="height: 60px;">06:00</div> - <div style="height: 60px;">07:00</div> - <div style="height: 60px;">08:00</div> - <div style="height: 60px;">09:00</div> - <div style="height: 60px;">10:00</div> - <div style="height: 60px;">11:00</div> - <div style="height: 60px;">12:00</div> - <div style="height: 60px;">13:00</div> - <div style="height: 60px;">14:00</div> - <div style="height: 60px;">15:00</div> - <div style="height: 60px;">16:00</div> - <div style="height: 60px;">17:00</div> - <div style="height: 60px;">18:00</div> - <div style="height: 60px;">19:00</div> - <div style="height: 60px;">20:00</div> - <div style="height: 60px;">21:00</div> - <div style="height: 60px;">22:00</div> - <div style="height: 60px;">23:00</div> - <div style="height: 60px;">00:00</div> - <div style="height: 60px;">01:00</div> - <div style="height: 60px;">02:00</div> - <div style="height: 60px;">03:00</div> - <div style="height: 60px;">04:00</div> - <div style="height: 60px;">05:00</div> - </div> - -</div> - -</body> -</html> |