Skip to content

Commit 0ba6b78

Browse files
committed
Show ballot comments even if AD has no position
- Legacy-Id: 1908
1 parent 40cafc3 commit 0ba6b78

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

ietf/idrfc/idrfc_wrapper.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,16 @@ def _init(self):
553553
# del po['is_old_ad']
554554
ads.add(str(p.ad))
555555
positions.append(po)
556+
for c in self.ballot.comments.all():
557+
if (str(c.ad) not in ads) and c.ad.is_current_ad():
558+
positions.append({'has_text':True,
559+
'comment_text':c.text,
560+
'comment_date':c.date,
561+
'comment_revision':str(c.revision),
562+
'ad_name':str(c.ad),
563+
'position':'No Record',
564+
'is_old_ad':False})
565+
ads.add(str(c.ad))
556566
if self.ballot_active:
557567
for ad in IESGLogin.active_iesg():
558568
if str(ad) not in ads:

0 commit comments

Comments
 (0)