hello,

I am just starting out with django (and python). I have already worked
through the tutorial successfully; now I am going through it again
adapting the examples to suit the web app I want to build (a local
book sharing scheme). What I have done so far is to define the models,
create the database and tables, and add the admin app to
INSTALLED_APPS. I have uncommmented the line in urls.py so that it now
looks like this:

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    # Example:
    # (r'^horace/', include('horace.apps.foo.urls.foo')),

    # Uncomment this for admin:
     (r'^admin/', include('django.contrib.admin.urls')),
)

when I start the test server with 'python manage.py runserver', and
try to look at the admin page at:
http://127.0.0.1:8000/admin/
it comes up with a page saying:

ImportError at /admin/
No module named urls
Request Method:         GET
Request URL:    http://127.0.0.1:8000/admin/
Exception Type:         ImportError
Exception Value:        No module named urls
Exception Location:     /var/lib/python-support/python2.5/django/core/
urlresolvers.py in _get_urlconf_module, line 161

I have checked that the django tutorial app still works, so the
problem seems to be with what I've done rather than the django
installation.

any help appreciated. thanks,

andy baxter.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to