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