Merged in [10932] from rjsparks@nostrum.com:
Restrict related documents included in the 1wg-charter* views to those that update or obsolete WG produced RFCs.
- Legacy-Id: 10935
Note: SVN reference [10932] has been migrated to Git commit d654610393
This commit is contained in:
commit
0005027d3e
|
@ -154,8 +154,8 @@ def fill_in_wg_drafts(group):
|
|||
group.drafts.append(a)
|
||||
else:
|
||||
group.rfcs.append(a)
|
||||
a.rel = RelatedDocument.objects.filter(source=a.document).distinct()
|
||||
a.invrel = RelatedDocument.objects.filter(target=a).distinct()
|
||||
a.rel = RelatedDocument.objects.filter(source=a.document,relationship_id__in=['obs','updates']).distinct()
|
||||
a.invrel = RelatedDocument.objects.filter(target=a,relationship_id__in=['obs','updates']).distinct()
|
||||
|
||||
@cache_page ( 60 * 60 )
|
||||
def wg_charters(request, group_type):
|
||||
|
|
Loading…
Reference in a new issue