You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow a review request to include a comment to show to the review team secretary at assignment time and the reviewer at review time. Fixesietf-tools#2096.
- Legacy-Id: 12548
Note: SVN reference [12545] has been migrated to Git commit 6fcd8b8
field=models.CharField(default=b'', help_text=b'Provide any additional information to show to the review team secretary and reviewer', max_length=2048, verbose_name=b"Requester's comments and instructions", blank=True),
Copy file name to clipboardExpand all lines: ietf/review/models.py
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,7 @@ class ReviewRequest(models.Model):
142
142
deadline=models.DateField()
143
143
requested_by=models.ForeignKey(Person)
144
144
requested_rev=models.CharField(verbose_name="requested revision", max_length=16, blank=True, help_text="Fill in if a specific revision is to be reviewed, e.g. 02")
145
+
comment=models.TextField(verbose_name="Requester's comments and instructions", max_length=2048, blank=True, help_text="Provide any additional information to show to the review team secretary and reviewer", default='')
145
146
146
147
# Fields filled in as reviewer is assigned and as the review is
147
148
# uploaded. Once these are filled in and we progress beyond being
0 commit comments