Skip to content

Commit d3e4dc6

Browse files
committed
Omit 'RFC Ed Queue' and 'RFC Published' states.
- Legacy-Id: 584
1 parent cf2c8e3 commit d3e4dc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idtracker/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def send_email(request):
178178
context_instance=RequestContext(request))
179179

180180
def status(request):
181-
queryset = IDInternal.objects.filter(primary_flag=1).exclude(cur_state__state__in=('AD is watching', 'Dead')).order_by('cur_state', 'status_date', 'ballot_id')
181+
queryset = IDInternal.objects.filter(primary_flag=1).exclude(cur_state__state__in=('RFC Ed Queue', 'RFC Published', 'AD is watching', 'Dead')).order_by('cur_state', 'status_date', 'ballot_id')
182182
return object_list(request, template_name="idtracker/status_of_items.html", queryset=queryset, extra_context={'title': 'IESG Status of Items'})
183183

184184
def last_call(request):

0 commit comments

Comments
 (0)