We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40cafc3 commit 0ba6b78Copy full SHA for 0ba6b78
1 file changed
ietf/idrfc/idrfc_wrapper.py
@@ -553,6 +553,16 @@ def _init(self):
553
# del po['is_old_ad']
554
ads.add(str(p.ad))
555
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))
566
if self.ballot_active:
567
for ad in IESGLogin.active_iesg():
568
if str(ad) not in ads:
0 commit comments