From 5b853f9300827ea163fa04a8ed21b48e2175e8d0 Mon Sep 17 00:00:00 2001 From: David Ray Date: Thu, 19 Jun 2014 23:55:15 -0400 Subject: [PATCH] Fixes #11 --- symposion/reviews/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symposion/reviews/views.py b/symposion/reviews/views.py index 8278778a..b1666f76 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")