Merge branch 'review-order' into 'master'
Order by ID rather than at last update time See merge request !16
This commit is contained in:
commit
56dc089d59
1 changed files with 1 additions and 1 deletions
2
vendor/symposion/reviews/views.py
vendored
2
vendor/symposion/reviews/views.py
vendored
|
@ -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)\
|
||||
|
|
Loading…
Reference in a new issue