summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-12-02 09:59:19 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-12-02 09:59:19 (GMT)
commitb1d6619029f17d9a942fcd201f7987d398b58487 (patch)
tree5ab2acbd1001dc44a7eff800b1beb168c3736248 /program
parent6254726315246d26eea5cea65016cdc2e41cd6d6 (diff)
parent663fa4f8bb23070ca242621f22989cbac3925a85 (diff)
Merge branch 'master' of github.com:nnrcschmdt/helsinki
Diffstat (limited to 'program')
-rw-r--r--program/views.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/program/views.py b/program/views.py
index 2f5c137..4bad7f8 100644
--- a/program/views.py
+++ b/program/views.py
@@ -110,4 +110,11 @@ def week_schedule(request, year=None, week=None):
extra_context['saturday_timeslots'] = TimeSlot.objects.get_day_timeslots(saturday)
extra_context['sunday_timeslots'] = TimeSlot.objects.get_day_timeslots(sunday)
+ extra_context['last_w'] = datetime.strftime(monday-timedelta(days=7), '%Y/%W')
+ extra_context['cur_w'] = '%s/%s' % (year, week)
+ extra_context['next_w1'] = datetime.strftime(monday+timedelta(days=7), '%Y/%W')
+ extra_context['next_w2'] = datetime.strftime(monday+timedelta(days=14), '%Y/%W')
+ extra_context['next_w3'] = datetime.strftime(monday+timedelta(days=21), '%Y/%W')
+ extra_context['next_w4'] = datetime.strftime(monday+timedelta(days=28), '%Y/%W')
+
return simple.direct_to_template(request, template='program/week_schedule.html', extra_context=extra_context)