@@ -58,27 +58,27 @@ def _sort_proposals_for_dashboard(conference, proposals_qs, user, form):
58
58
batch1 = [p for p in proposals_qs
59
59
if p .get_reviewer_votes_count_by_value (ProposalReviewVote .MUST_HAVE ) > 0 and
60
60
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 ))
62
62
batches += batch1
63
63
64
64
batch2 = [p for p in proposals_qs
65
65
if p .get_reviewer_votes_count_by_value (ProposalReviewVote .MUST_HAVE ) > 0 and
66
66
p .get_reviewer_votes_count_by_value (ProposalReviewVote .GOOD ) > 0 and
67
67
p not in batches ]
68
- proposals .append (s_items ('Batch 2 ' , batch2 ))
68
+ proposals .append (s_items ('1 Must Have & 1 Good Vote ' , batch2 ))
69
69
batches += batch2
70
70
71
71
batch3 = [p for p in proposals_qs
72
72
if p .get_reviewer_votes_count_by_value (ProposalReviewVote .GOOD ) > 1 and
73
73
p not in batches ]
74
- proposals .append (s_items ('Batch 3 ' , batch3 ))
74
+ proposals .append (s_items ('2+ Good Votes ' , batch3 ))
75
75
batches += batch3
76
76
77
77
batch4 = [p for p in proposals_qs
78
78
if p .get_reviewer_votes_count_by_value (ProposalReviewVote .GOOD ) > 0 and
79
79
p .get_reviewer_votes_count_by_value (ProposalReviewVote .NOT_BAD ) > 1 and
80
80
p not in batches ]
81
- proposals .append (s_items ('Batch 4 ' , batch4 ))
81
+ proposals .append (s_items ('1 Good & 2+ Not Bad votes ' , batch4 ))
82
82
83
83
if votes not in (ProposalVotesFilter .SORT_BY_SUM , ProposalVotesFilter .SORT_BY_SELECTION ):
84
84
for section in proposal_sections :
0 commit comments