Tagged Questions

0
votes
1answer
40 views

Mutual foo.bar and bar.foo attributes in django Models with onetooneviews

I have two classes, Foo and Bar, in a Django app (on AppEngine if that matters). There's a one to one relationship between them. class Foo(BaseModel): bar = Bar.objects.get(foo=self.id) class ...