diff --git a/symposion/reviews/views.py b/symposion/reviews/views.py index 8278778add6ec1b51f0443776720465075e6a1b4..b1666f7661e7856d413119e3270e8346a798a733 100644 --- a/symposion/reviews/views.py +++ b/symposion/reviews/views.py @@ -69,7 +69,7 @@ def review_section(request, section_slug, assigned=False, reviewed="all"): return access_not_permitted(request) section = get_object_or_404(ProposalSection, section__slug=section_slug) - queryset = ProposalBase.objects.filter(kind__section=section) + queryset = ProposalBase.objects.filter(kind__section=section.section) if assigned: assignments = ReviewAssignment.objects.filter(user=request.user).values_list("proposal__id")