Skip to content

Commit 0005027

Browse files
committed
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 d654610
2 parents 0039594 + d654610 commit 0005027

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/group/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ def fill_in_wg_drafts(group):
154154
group.drafts.append(a)
155155
else:
156156
group.rfcs.append(a)
157-
a.rel = RelatedDocument.objects.filter(source=a.document).distinct()
158-
a.invrel = RelatedDocument.objects.filter(target=a).distinct()
157+
a.rel = RelatedDocument.objects.filter(source=a.document,relationship_id__in=['obs','updates']).distinct()
158+
a.invrel = RelatedDocument.objects.filter(target=a,relationship_id__in=['obs','updates']).distinct()
159159

160160
@cache_page ( 60 * 60 )
161161
def wg_charters(request, group_type):

0 commit comments

Comments
 (0)