From 51b53031911f12a6bb02b31cf27b2df7e4da5c83 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 6 Mar 2018 20:39:14 +0000 Subject: [PATCH] Included mailing lists for groups in state 'bof' on the non-WG mailing list page, as that seems to match people's expectations better. Thiw was triggered by the observation that the 'iasa20' list was not listed on the page. - Legacy-Id: 14740 --- ietf/mailinglists/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/mailinglists/views.py b/ietf/mailinglists/views.py index d26fbccf9..48acbe708 100644 --- a/ietf/mailinglists/views.py +++ b/ietf/mailinglists/views.py @@ -19,7 +19,7 @@ def groups(request): # safely cache this for some time. @cache_page(15*60) def nonwg(request): - groups = Group.objects.filter(type__in=("wg", "rg")).order_by("acronym") + groups = Group.objects.filter(type__in=("wg", "rg")).exclude(state='bof').order_by("acronym") #urls = [ g.list_archive for g in groups if '.ietf.org' in g.list_archive ]