We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32c7740 commit 4c4bc99Copy full SHA for 4c4bc99
1 file changed
ietf/iesg/views.py
@@ -177,16 +177,16 @@ def get_wg_section(wg):
177
charter_slug = None
178
if wg.charter:
179
charter_slug = wg.charter.get_state_slug()
180
- if wg.state_id == "proposed":
181
- if charter_slug == "intrev":
182
- s = '411'
183
- elif charter_slug == "iesgrev":
184
- s = '412'
185
- elif wg.state_id == "active":
186
187
- s = '421'
188
+ if wg.state_id in ['active','dormant']:
+ if charter_slug in ['extrev','iesgrev']:
189
s = '422'
+ else:
+ s = '421'
+ s = '412'
+ s = '411'
190
return s
191
192
if settings.USE_DB_REDESIGN_PROXY_CLASSES:
0 commit comments