equal
deleted
inserted
replaced
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 |