diff --git a/colleges/models.py b/colleges/models.py index 35747b72bd657d1903e6e5d0e3d3c3e3f3003c97..778b60bec4d1d7c924a5b96f8f7fd2bd0345ed9b 100644 --- a/colleges/models.py +++ b/colleges/models.py @@ -77,7 +77,8 @@ class PotentialFellowship(models.Model): It is linked to Profile as ForeignKey and not as OneToOne, since the same person can eventually be approached on different occasions. - COMMENT: Why is this only nonregistered people only? + Using Profile allows to treat both registered Contributors + and non-registered people equally well. """ profile = models.ForeignKey('profiles.Profile', on_delete=models.CASCADE)