Re: Models split and Model._meta.installed

2008-11-30 Thread David Elias
On Nov 30, 12:31 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > Both of these changes look like they should work for your particular > situation. They aren't a general solution to the problem -- although > generalising to work correctly might not be too hard -- since you've > changed the hard

Re: Models split and Model._meta.installed

2008-11-29 Thread Malcolm Tredinnick
On Sat, 2008-11-29 at 12:48 -0800, David Elias wrote: > In my projects i often split models into several files inside a models > folder: > > some_app / > models / > __init__.py > some_models.py > other_models.py > ... > > I know i must set app_label in Meta o

Models split and Model._meta.installed

2008-11-29 Thread David Elias
In my projects i often split models into several files inside a models folder: some_app / models / __init__.py some_models.py other_models.py ... I know i must set app_label in Meta options, but even so Model._meta.installed returns false. In django.db.models.