Skip to content

Commit 7875331

Browse files
committed
From RjS: Added a case in the render_ballot_icon() filter for statchg documents.
- Legacy-Id: 5789
1 parent c696c06 commit 7875331

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

ietf/idrfc/templatetags/ballot_icon_redesign.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ def render_ballot_icon(user, doc):
7373
elif doc.type_id == "conflrev":
7474
if doc.get_state_slug() not in ("iesgeval","defer"):
7575
return ""
76+
elif doc.type_id == "statchg":
77+
if doc.get_state_slug() not in ("iesgeval","defer"):
78+
return ""
7679

7780
ballot = doc.latest_event(BallotDocEvent, type="created_ballot")
7881
if not ballot:

0 commit comments

Comments
 (0)