Re: Django Model Inheritance

2007-12-31 Thread Sridhar Ratnakumar
On Dec 30 2007, 12:47 am, "Waylan Limberg" <[EMAIL PROTECTED]> wrote: > On Dec 29, 2007 8:49 AM, Sridhar Ratnakumar <[EMAIL PROTECTED]> wrote: > > > [that link is going down -- hence, I'm pasting the contents below] > > Your willingness to shar

Re: Django Model Inheritance

2007-12-29 Thread Sridhar Ratnakumar
nds(RetainDeletesMixin) ... What this basically does is - copy the database fields and objects from the base class (RetainDeletesMixin) to the derived class (Item) so that Django will recognize it upon processing in ModelBase. It also makes RetainDeletesMixin a base class of Item. I have not

Django Model Inheritance

2007-12-19 Thread Sridhar Ratnakumar
I wanted to share this little hack of mine - conceptual (not database- based) inheritance for django: http://nearfar.org/blog/django-model-inheritance.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django deve