Problems with Admin interface and one-to-one rels

2005-10-30 Thread Dado
I am a total newbie of Django and I am playing around with some of its features. When I added the admin interface via "class META: admin = meta.Admin()" to the models as described in I cannot get the Admin interface to work properly

Problems with Admin interface

2005-10-30 Thread Dado
I am a total newbie of Django and I am playing around with some of its features. When I added the admin interface via "class META: admin = meta.Admin()" to the models as described in I cannot get the Admin interface to work properly.

Re: Model inheritance, Python subclass or one-to-one relationship?

2005-10-30 Thread Dado
SQLObject uses "Class Table Inheritance". I would say that giving the developer a choice of STI and CTI (perhaps via an option in META) for different use cases it's the best solution. If not possible, I would go with CTI!!! I am a Django newb but I would really love to implement what I have in m