@@ -58,27 +58,27 @@ def _sort_proposals_for_dashboard(conference, proposals_qs, user, form):
5858 batch1 = [p for p in proposals_qs
5959 if p .get_reviewer_votes_count_by_value (ProposalReviewVote .MUST_HAVE ) > 0 and
6060 p .get_reviewer_votes_count_by_value (ProposalReviewVote .GOOD ) > 1 ]
61- proposals .append (s_items ('Batch 1 ' , batch1 ))
61+ proposals .append (s_items ('1 Must Have & 2+ Good Votes ' , batch1 ))
6262 batches += batch1
6363
6464 batch2 = [p for p in proposals_qs
6565 if p .get_reviewer_votes_count_by_value (ProposalReviewVote .MUST_HAVE ) > 0 and
6666 p .get_reviewer_votes_count_by_value (ProposalReviewVote .GOOD ) > 0 and
6767 p not in batches ]
68- proposals .append (s_items ('Batch 2 ' , batch2 ))
68+ proposals .append (s_items ('1 Must Have & 1 Good Vote ' , batch2 ))
6969 batches += batch2
7070
7171 batch3 = [p for p in proposals_qs
7272 if p .get_reviewer_votes_count_by_value (ProposalReviewVote .GOOD ) > 1 and
7373 p not in batches ]
74- proposals .append (s_items ('Batch 3 ' , batch3 ))
74+ proposals .append (s_items ('2+ Good Votes ' , batch3 ))
7575 batches += batch3
7676
7777 batch4 = [p for p in proposals_qs
7878 if p .get_reviewer_votes_count_by_value (ProposalReviewVote .GOOD ) > 0 and
7979 p .get_reviewer_votes_count_by_value (ProposalReviewVote .NOT_BAD ) > 1 and
8080 p not in batches ]
81- proposals .append (s_items ('Batch 4 ' , batch4 ))
81+ proposals .append (s_items ('1 Good & 2+ Not Bad votes ' , batch4 ))
8282
8383 if votes not in (ProposalVotesFilter .SORT_BY_SUM , ProposalVotesFilter .SORT_BY_SELECTION ):
8484 for section in proposal_sections :
0 commit comments