Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion junction/proposals/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _get_proposal_section_reviewer_vote_choices(conference):
else:
plus_zero_vote_setting_value = True
values = []
for i in ProposalSectionReviewerVoteValue.objects.all():
for i in ProposalSectionReviewerVoteValue.objects.all().reverse():
if i.vote_value == 0 and not plus_zero_vote_setting_value:
continue
values.append((i.vote_value, '{}'.format(i.description)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ <h3 class="proposal--title">
</h3>

<div>
Sum of Votes: {{ proposal.get_reviewer_votes_sum }}
{% for vote in proposal|get_reviewers_vote_details:request.user %}
<li>
{{ vote.voter_nick }}:
Expand Down