Changeset - 89e74a6f111e
[Not reviewed]
0 1 0
Sachi King - 7 years ago 2017-07-14 11:19:28
nakato@nakato.io
Order by ID rather than at last update time

The current ordering is based on what appears to be a random ordering
that happens to correlate to the last time the paper was submitted or
updated. Oldest to most recent.

This changes it to submission order so ordering doesn't change and ID is
a static, making it easier to move through a list of papers. "I last
looked at 24, so 25 is assured to be the next one I want to look at.

There's the thought of updated papers being looked at and voted on, but
it does not seem to me that this is supported or possible. In general
one would look at their un-reviewed list, and go off it, which puts
updates out the window.

We can certainly order on other fields if desired, but this one makes
the most since to me.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
vendor/symposion/reviews/views.py
Show inline comments
...
 
@@ -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)\
0 comments (0 inline, 0 general)