When you have a look at the error and at your urlsconf.py, you might
see that the error does not include your urlconf.py, which it actually
should, so the problem must be, that Django is not using your urlconf.
Have you included the urlconf in your projects urls.py?
Could be something like this:
urlpatterns = patterns('',
# other stuff
(r'^$', include('front.urls')),
)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" 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-users?hl=en
-~----------~----~----~----~------~----~------~--~---