On Mon, 2008-07-07 at 07:31 -0700, Leaf wrote: > I received an error when I tried to access my "Dj Styles" program over > the dev server. To make sure that my URLConf worked properly, I typed > in the address localhost:8000/styles/css/classic-b-and-w/, in an > attempt to get a View Does Not Exist error to confirm that I properly > configured the URLS. Instead, I got a page with the title > "ImproperlyConfigured at /styles/css/classic-b-and-w/. To make the > URLConf, I copied the URLConf that dbsettings used in both the main > urls.py and in dbsettings/urls.py. > > There are details at http://dpaste.com/hold/61127/ (lines 3-14 are the > main urls.py in my project root, lines 18-23 is dbsettings/urls.py, > lines 27-32 are dj_styles/urls.py, and lines 36-69 are the traceback > returned from the error screen). Does anyone know why this result > would be given?
Sure. firstsite/dj_styles/urls.py: from django.conf.details.urls.default import * ^^^^^^^ That's plain wrong. And the Exception Value tells you that: "No module named details.urls.default" Just leave the 'details.' part away, as you did in all other urls.py fragments. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---