Tagged Questions
8
votes
2answers
3k views
Django Admin: OneToOne Relation as an Inline?
I am putting together the admin for a satchmo application. Satchmo uses OneToOne relations to extend the base Product model, and I'd like to edit it all on one page.
It is possible to have a OneToOne ...
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 ...