app/projrev/models.py
changeset 28 be65e84e7d03
parent 26 97bd3c28c957
child 32 b39994cca761
equal deleted inserted replaced
27:37612f295cd4 28:be65e84e7d03
   841   #: Field representing the relation to the corresponding project.
   841   #: Field representing the relation to the corresponding project.
   842   project = models.ForeignKey(Project)
   842   project = models.ForeignKey(Project)
   843 
   843 
   844   #: Field containing the comment entered along with the review.
   844   #: Field containing the comment entered along with the review.
   845   comment = models.TextField()
   845   comment = models.TextField()
       
   846   comment.help_text = "Enter your review comment about this proposal."
   846 
   847 
   847   #: Field representing the reference to the person who
   848   #: Field representing the reference to the person who
   848   #: did the review.
   849   #: did the review.
   849   reviewer = models.ForeignKey(User, null=True)
   850   reviewer = models.ForeignKey(User, null=True)
   850 
   851