Skip to content

Commit d654610

Browse files
committed
Restrict related documents included in the 1wg-charter* views to those that update or obsolete WG produced RFCs. Commit ready for merge.
- Legacy-Id: 10932
1 parent 647b09d commit d654610

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)