Re: ModelAdmin and AlreadyRegistered

2008-03-02 Thread Michael
Ahh sorry. Yea for my projects too, I find it to be the most simple setup. On Sun, Mar 2, 2008 at 11:32 AM, Rajeev J Sebastian < [EMAIL PROTECTED]> wrote: > > Hello Micheal, > > I guess my very terse response caused some misunderstanding. > > I meant, we (i.e., dinamis.com in our inhouse

Re: ModelAdmin and AlreadyRegistered

2008-03-02 Thread Rajeev J Sebastian
Hello Micheal, I guess my very terse response caused some misunderstanding. I meant, we (i.e., dinamis.com in our inhouse projects) put all our admin related stuff for each app in an /admin.py and load it at startup. Sorry for the misunderstanding I caused. Regards Rajeev J Sebastian On Sun,

Re: ModelAdmin and AlreadyRegistered

2008-03-02 Thread Michael
On Sun, Mar 2, 2008 at 9:34 AM, Rajeev J Sebastian < [EMAIL PROTECTED]> wrote: > > On Sun, Mar 2, 2008 at 3:29 AM, Michael Newman <[EMAIL PROTECTED]> > wrote: > > > > To elaborate I just threw 4 lines of code into my contrib.admin > > __init__: > > from django.conf import settings > > for a

Re: ModelAdmin and AlreadyRegistered

2008-03-02 Thread Rajeev J Sebastian
On Sun, Mar 2, 2008 at 3:29 AM, Michael Newman <[EMAIL PROTECTED]> wrote: > > To elaborate I just threw 4 lines of code into my contrib.admin > __init__: > from django.conf import settings > for a in settings.INSTALLED_APPS: > try: > __import__(a + '.admin') > except

Re: ModelAdmin and AlreadyRegistered

2008-03-02 Thread Russell Keith-Magee
On Sat, Mar 1, 2008 at 2:57 AM, Brian Rosner <[EMAIL PROTECTED]> wrote: > > I would like to ignite some discussion about removing or changing the > behavior of AdminSite throwing the AlreadyRegistered exception. More > and more people are using newforms-admin and I am beginnging to see > where