Skip to content

Commit 109bd6b

Browse files
committed
Fixed bug in showing concluded WGs
- Legacy-Id: 2066
1 parent f760caa commit 109bd6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/wginfo/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def wg_charters_by_acronym(request):
7777

7878
def wg_documents(request, acronym):
7979
wg = get_object_or_404(IETFWG, group_acronym__acronym=acronym, group_type=1)
80-
concluded = (wg.status != 1)
80+
concluded = (wg.status_id != 1)
8181
form = SearchForm({'by':'group', 'group':str(wg.group_acronym.acronym),
8282
'rfcs':'on', 'activeDrafts':'on'})
8383
if not form.is_valid():

0 commit comments

Comments
 (0)