Skip to content

Commit 120d78b

Browse files
committed
Changed the sort order of nominees on the private index page to be according to name (instead of email address).
- Legacy-Id: 15479
1 parent 9067a2d commit 120d78b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/nomcom/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def private_key(request, year):
132132
@role_required("Nomcom")
133133
def private_index(request, year):
134134
nomcom = get_nomcom_by_year(year)
135-
all_nominee_positions = NomineePosition.objects.get_by_nomcom(nomcom).not_duplicated()
135+
all_nominee_positions = NomineePosition.objects.get_by_nomcom(nomcom).not_duplicated().order_by('nominee__person__name')
136136
is_chair = nomcom.group.has_role(request.user, "chair")
137137
if is_chair and request.method == 'POST':
138138
if nomcom.group.state_id != 'active':

0 commit comments

Comments
 (0)