You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# sadly we can't use the generic view because it only works with a queryset...
35
+
returnrender_to_response('idtracker/status_of_items.html', dict(object_list=drafts, title="IESG Status of Items"), context_instance=RequestContext(request))
36
+
30
37
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')
31
38
returnobject_list(request, template_name="idtracker/status_of_items.html", queryset=queryset, extra_context={'title': 'IESG Status of Items'})
# sadly we can't use the generic view because it only works with a queryset...
45
+
returnrender_to_response('idtracker/status_of_items.html', dict(object_list=drafts, title="Documents in Last Call", lastcall=1), context_instance=RequestContext(request))
46
+
34
47
queryset=IDInternal.objects.filter(primary_flag=1).filter(cur_state__state__in=('In Last Call', 'Waiting for Writeup', 'Waiting for AD Go-Ahead')).order_by('cur_state', 'status_date', 'ballot')
35
48
returnobject_list(request, template_name="idtracker/status_of_items.html", queryset=queryset, extra_context={'title': 'Documents in Last Call', 'lastcall': 1})
36
49
37
50
defredirect_id(request, object_id):
38
51
'''Redirect from historical document ID to preferred filename url.'''
52
+
ifsettings.USE_DB_REDESIGN_PROXY_CLASSES:
53
+
raiseHttp404() # we don't store the numbers anymore
0 commit comments