diff --git a/vendor/symposion/reviews/views.py b/vendor/symposion/reviews/views.py index c45dbf4a8fb6dfc3c2d9c70110ed58b3e250051b..388153091f81d0eac534678fab8bec0531576bb9 100644 --- a/vendor/symposion/reviews/views.py +++ b/vendor/symposion/reviews/views.py @@ -107,7 +107,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.section) + queryset = ProposalBase.objects.filter(kind__section=section.section).order_by('id') if assigned: assignments = ReviewAssignment.objects.filter(user=request.user)\