diff --git a/cfp/views.py b/cfp/views.py index 24a8082..6afc851 100644 --- a/cfp/views.py +++ b/cfp/views.py @@ -486,7 +486,7 @@ def schedule(request, program_format, pending, cache, template): def public_schedule(request, program_format): - if not request.conference.schedule_available: + if not request.conference.schedule_available and not is_staff(request, request.user): raise PermissionDenied return schedule(request, program_format=program_format, pending=False, cache=True, template='cfp/schedule.html')