diff --git a/symposion/reviews/views.py b/symposion/reviews/views.py index 700d7cf898c40e9b618e0996a17ac5e6f5b5c899..78258771ce907530b1e5822feaaa06be8a625dca 100644 --- a/symposion/reviews/views.py +++ b/symposion/reviews/views.py @@ -372,7 +372,7 @@ def review_bulk_accept(request, section_slug): for talk in talks: talk.result.status = "accepted" talk.result.save() - return redirect("review_list") + return redirect("review_section", section_slug=section_slug) else: form = BulkPresentationForm()