Changeset - 5b853f930082
[Not reviewed]
0 1 0
David Ray - 10 years ago 2014-06-20 03:55:15
davidray@gmail.com
Fixes #11
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion/reviews/views.py
Show inline comments
...
 
@@ -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")
0 comments (0 inline, 0 general)