Skip to content

Commit 2dbed6a

Browse files
committed
Don't show request closing WG link if group is proposed.
- Legacy-Id: 4401
1 parent 07382a0 commit 2dbed6a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

ietf/wginfo/views.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ def wg_charter(request, acronym):
174174

175175
if wg.state_id != "conclude":
176176
actions.append(("Edit WG", urlreverse("wg_edit", kwargs=dict(acronym=wg.acronym))))
177+
if wg.state_id in ("active", "dormant"):
177178
actions.append(("Request closing WG", urlreverse("wg_conclude", kwargs=dict(acronym=wg.acronym))))
178179

179180
context = get_wg_menu_context(wg, "charter")

0 commit comments

Comments
 (0)