diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-03-26 20:35:14 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-03-26 20:35:14 (GMT) |
commit | d277b4a96830dac291fa77c710ffcba1c802407d (patch) | |
tree | 4209a83efd4ab96b028b7daa8e89630dfe383e90 /helsinki.program/templates/program/week_schedule.html | |
parent | faa08b0b5ff0da35708fdbfc0cf2475a051ee6e4 (diff) |
refactor project structure
Diffstat (limited to 'helsinki.program/templates/program/week_schedule.html')
-rw-r--r-- | helsinki.program/templates/program/week_schedule.html | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/helsinki.program/templates/program/week_schedule.html b/helsinki.program/templates/program/week_schedule.html deleted file mode 100644 index 2969d28..0000000 --- a/helsinki.program/templates/program/week_schedule.html +++ /dev/null @@ -1,87 +0,0 @@ -<html> -<head> - <title>Week schedule</title> -</head> - -<body> - -<div id="week-schedule"> - <div id="time"> - <div class="1hour">06:00</div> - <div class="1hour">07:00</div> - <div class="1hour">08:00</div> - <div class="1hour">09:00</div> - <div class="1hour">10:00</div> - <div class="1hour">11:00</div> - <div class="1hour">12:00</div> - <div class="1hour">13:00</div> - <div class="1hour">14:00</div> - <div class="1hour">15:00</div> - <div class="1hour">16:00</div> - <div class="1hour">17:00</div> - <div class="1hour">18:00</div> - <div class="1hour">19:00</div> - <div class="1hour">20:00</div> - <div class="1hour">21:00</div> - <div class="1hour">22:00</div> - <div class="1hour">23:00</div> - <div class="1hour">00:00</div> - <div class="1hour">01:00</div> - <div class="1hour">02:00</div> - <div class="1hour">03:00</div> - <div class="1hour">04:00</div> - <div class="1hour">05:00</div> - </div> - - <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> |