Merged [2959] from rjsparks@nostrum.com:
Changed wrapper construction to get the IPR column working. This refixes #630 - Legacy-Id: 2964 Note: SVN reference [2959] has been migrated to Git commit b1cc77d0ce180524538ecfd03ec9bfb4193b88f8
This commit is contained in:
parent
12f344054d
commit
fbfee9b1e8
|
@ -312,5 +312,13 @@ def active(request):
|
|||
return render_to_response("idrfc/active.html", {'groups':groups,'individual':individual}, context_instance=RequestContext(request))
|
||||
|
||||
def in_last_call(request):
|
||||
lcdocs = [IdWrapper(p) for p in InternetDraft.objects.all().filter(idinternal__primary_flag=1).filter(idinternal__cur_state__state='In Last Call')]
|
||||
|
||||
lcdocs = []
|
||||
|
||||
for p in InternetDraft.objects.all().filter(idinternal__primary_flag=1).filter(idinternal__cur_state__state='In Last Call'):
|
||||
if (p.idinternal.rfc_flag):
|
||||
lcdocs.append(IdRfcWrapper(None,RfCWrapper(p)))
|
||||
else:
|
||||
lcdocs.append(IdRfcWrapper(IdWrapper(p),None))
|
||||
|
||||
return render_to_response("idrfc/in_last_call.html", {'lcdocs':lcdocs}, context_instance=RequestContext(request))
|
||||
|
|
Loading…
Reference in a new issue