Re: Using Tutorial

2008-10-16 Thread bruno desthuilliers
On 16 oct, 14:46, maumir <[EMAIL PROTECTED]> wrote: > Thanks but I have not yet resolved. in the file "settings.py" I added > mysite.polls in > INSTALLED_APPS = ( > 'django.contrib.auth', > 'django.contrib.contenttypes', > ' django.contrib.sessions', > 'django.contrib.sites', > ' mysite. polls'

Re: Using Tutorial

2008-10-16 Thread Karen Tracey
On Thu, Oct 16, 2008 at 8:46 AM, maumir <[EMAIL PROTECTED]> wrote: > > Thanks but I have not yet resolved. in the file "settings.py" I added > mysite.polls in > INSTALLED_APPS = ( > 'django.contrib.auth', > 'django.contrib.contenttypes', > ' django.contrib.sessions', > 'django.contrib.sites', > '

Re: Using Tutorial

2008-10-16 Thread maumir
Thanks but I have not yet resolved. in the file "settings.py" I added mysite.polls in INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', ' django.contrib.sessions', 'django.contrib.sites', ' mysite. polls' ) with or without a comma after 'polls' is the same. When launching

Re: Using Tutorial

2008-10-15 Thread Keith Eberle
Did you name your project "MySite" or "mysite". There is a difference... keith On Wed, Oct 15, 2008 at 10:55 AM, maumir <[EMAIL PROTECTED]> wrote: > > I'm to start using the tutorial but during the steps about 'Writing > your first Django app, part 1', specifically in 'Activating models' > th