Hi Adrian, thanks for replying. The project's urls.py does include the
urls.py I've shown, but here they are:
cat urls.py
from django.conf.urls.defaults import *
urlpatterns = patterns('',
# Uncomment this for admin:
(r'^admin/', include('django.contrib.admin.urls')),
(r'^user/login/$',
'django.contrib.auth.views.login',{'template_name':'user/login.html'}),
(r'^user/logout/$',
'django.contrib.auth.views.logout',{'template_name':'user/logout.html'}),
(r'^.*$', include('lisa.forge.urls')),
)
And the forge/urls.py
cat forge/urls.py
from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^index/$','lisa.forge.views.index'),
)
This gives me a 'page not found' if I try to access the index view.
Do you see anything wrong with this?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---