We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3379496 commit 62b82e5Copy full SHA for 62b82e5
1 file changed
ietf/idtracker/views.py
@@ -61,7 +61,7 @@ def search(request):
61
if status != '':
62
q_objs.append(Q(draft__status=status,rfc_flag=0))
63
matches = IDInternal.objects.all().filter(*q_objs)
64
- matches = matches.order_by('cur_state', 'cur_sub_state', 'ballot')
+ matches = matches.order_by('cur_state', 'cur_sub_state', 'ballot', '-primary_flag')
65
#
66
# Now search by I-D exists, if there could be any results.
67
# If searching by job owner, current state or substate, there
0 commit comments