Skip to content

Commit

Permalink
fixed days for DjangoCon
Browse files Browse the repository at this point in the history
  • Loading branch information
brosner committed Jul 12, 2011
1 parent 085cd46 commit 2cbc2de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions symposion/schedule/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ def schedule_conference_edit(request):
return redirect("schedule_conference")
ctx = {
"timetables": [
Timetable(Slot.objects.filter(start__week_day=6), user=request.user),
Timetable(Slot.objects.filter(start__week_day=7), user=request.user),
Timetable(Slot.objects.filter(start__week_day=1), user=request.user),
Timetable(Slot.objects.filter(start__week_day=3), user=request.user),
Timetable(Slot.objects.filter(start__week_day=4), user=request.user),
Timetable(Slot.objects.filter(start__week_day=5), user=request.user),
]
}
ctx = RequestContext(request, ctx)
Expand Down

0 comments on commit 2cbc2de

Please sign in to comment.