#9174: Following 2nd part of tutorial
---------------------------+------------------------------------------------
Reporter: johnturek | Owner: nobody
Status: new | Milestone:
Component: Uncategorized | Version: 1.0
Keywords: | Stage: Unreviewed
Has_patch: 0 |
---------------------------+------------------------------------------------
#
Add "django.contrib.admin" to your INSTALLED_APPS setting.
#
Run python manage.py syncdb. Since you have added a new application to
INSTALLED_APPS, the database tables need to be updated.
here is what i did...
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin'
'mysite.polls'
)
john-tureks-macbook:mysite johnturek$ python manage.py syncdb
Error: No module named adminmysite
--
Ticket URL: <http://code.djangoproject.com/ticket/9174>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---