Changeset - 07198b2ecfd6
[Not reviewed]
0 1 0
Christopher Neugebauer - 8 years ago 2016-08-16 21:35:46
chrisjrn@gmail.com
Direct reviewers to the controversial talks instead of the indifferent talks
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
symposion/reviews/views.py
Show inline comments
...
 
@@ -205,12 +205,12 @@ def review_random_proposal(request, section_slug):
 

	
 
    # Direct reviewers to underreviewed proposals
 
    too_few_set = REVIEW_STATUS_FILTERS[TOO_FEW](queryset)
 
    indifferent_set = REVIEW_STATUS_FILTERS[INDIFFERENT](queryset)
 
    controversial_set = REVIEW_STATUS_FILTERS[CONTROVERSIAL](queryset)
 

	
 
    if len(too_few_set) > 0:
 
        queryset = too_few_set
 
    elif len(indifferent_set) > 0:
 
        queryset = indifferent_set
 
    elif len(controversial_set) > 0:
 
        queryset = controversial_set
 

	
 
    # Realistically, there shouldn't be all that many proposals to choose
 
    # from, so this should be cheap.
0 comments (0 inline, 0 general)