Re: Error creating super user

2007-05-09 Thread Kabads
On 9 May, 09:56, Kabads <[EMAIL PROTECTED]> wrote: > On 9 May, 07:38, Ben Schwarze <[EMAIL PROTECTED]> wrote: > > > > > Hi Kabads, > > > you need to add "django.contrib.admin" to your installed apps in > > settings: > > > E.g.: > > > INSTALLED_APPS = ( > > 'django.contrib.admin', > >

Re: Error creating super user

2007-05-09 Thread Kabads
On 9 May, 07:38, Ben Schwarze <[EMAIL PROTECTED]> wrote: > Hi Kabads, > > you need to add "django.contrib.admin" to your installed apps in > settings: > > E.g.: > > INSTALLED_APPS = ( > 'django.contrib.admin', > 'django.contrib.auth', > 'django.contrib.contenttypes', >

Re: Error creating super user

2007-05-09 Thread limodou
On 5/9/07, Ben Schwarze <[EMAIL PROTECTED]> wrote: > > Hi Kabads, > > you need to add "django.contrib.admin" to your installed apps in > settings: > > E.g.: > > INSTALLED_APPS = ( > 'django.contrib.admin', > 'django.contrib.auth', > 'django.contrib.contenttypes', >

Re: Error creating super user

2007-05-09 Thread Ben Schwarze
Hi Kabads, you need to add "django.contrib.admin" to your installed apps in settings: E.g.: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', ) Afterwards you should run

Error creating super user

2007-05-09 Thread Kabads
I'm using SVN django (checked out a couple of days ago) to work my way through the new DJango book. Chapter six of the book details how to create the admin interface. I've followed the steps through and ran python manage.py syncdb. According to the chapter I should have been prompted for a super