Skip to content

Commit

Permalink
fix: Clarify Questionnaire label (ietf-tools#4688) (ietf-tools#6017)
Browse files Browse the repository at this point in the history
When filtering nominees, `Questionnaire` implies `Accepted == yes`
so fix the dropdown test tosay that.

Fixes: ietf-tools#4688
  • Loading branch information
richsalz committed Jul 22, 2023
1 parent 3a499cd commit ebad948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/nomcom/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def private_index(request, year):
'position__id':p.pk,
'position': p,
} for p in positions]
states = list(NomineePositionStateName.objects.values('slug', 'name')) + [{'slug': questionnaire_state, 'name': 'Questionnaire'}]
states = [{'slug': questionnaire_state, 'name': 'Accepted and sent Questionnaire'}] + list(NomineePositionStateName.objects.values('slug', 'name'))
positions = set([ n.position for n in all_nominee_positions.order_by('position__name') ])
for s in stats:
for state in states:
Expand Down

0 comments on commit ebad948

Please sign in to comment.