Код: Выделить всё
class Site(models.Model):
# This is djangos build-in Site Model
pass
class Organization(models.Model):
site = models.OneToOneField(Site)
Код: Выделить всё
organization = self.site.organization
Код: Выделить всё
Site has no attribute "organization"
Подробнее здесь: https://stackoverflow.com/questions/734 ... ationships