app/projrev/models.py
changeset 43 55e650bb9dbe
parent 39 e7880a8f7e04
child 47 09c3b7aaa535
equal deleted inserted replaced
42:4cf4c1f0e5bb 43:55e650bb9dbe
   871   """
   871   """
   872 
   872 
   873   #: Field representing the relation to the corresponding project.
   873   #: Field representing the relation to the corresponding project.
   874   project = models.ForeignKey(Project)
   874   project = models.ForeignKey(Project)
   875 
   875 
       
   876   #: Field representing the relation to the corresponding proposal.
       
   877   proposal = models.ForeignKey(Proposal)
       
   878 
   876   #: Field containing the comment entered along with the review.
   879   #: Field containing the comment entered along with the review.
   877   comment = models.TextField()
   880   comment = models.TextField()
   878   comment.verbose_name = 'Overall Comment'
   881   comment.verbose_name = 'Overall Comment'
   879   comment.help_text = "Enter your review comment about this proposal."
   882   comment.help_text = "Enter your review comment about this proposal."
   880 
   883