Don't list documents replaced by other documents in the IESG Status list at /idtracker/status/.

- Legacy-Id: 5625
This commit is contained in:
Henrik Levkowetz 2013-04-05 11:22:47 +00:00
parent f71d40423a
commit 55626b8523

View file

@ -29,7 +29,8 @@ IESG to do anything with the document.
def status(request):
if settings.USE_DB_REDESIGN_PROXY_CLASSES:
drafts = list(IDInternal.objects.filter(states__type="draft-iesg").exclude(states__type="draft-iesg", states__slug__in=('pub', 'dead', 'watching', 'rfcqueue')).distinct().order_by('states__order'))
drafts = IDInternal.objects.filter(states__type="draft-iesg").exclude(states__type="draft-iesg", states__slug__in=('pub', 'dead', 'watching', 'rfcqueue')).distinct().order_by('states__order')
drafts = [ d for d in drafts if not d.replaced_by ]
drafts.sort(key=lambda d: (d.cur_state_id, d.status_date or datetime.date.min, d.b_sent_date or datetime.date.min))
# sadly we can't use the generic view because it only works with a queryset...
return render_to_response('idtracker/status_of_items.html', dict(object_list=drafts, title="IESG Status of Items"), context_instance=RequestContext(request))