Hi ,whit a view like this in selecto APP
###############
# Create your views here.
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the poll index.")
########
and URL.py
###########
from django.conf.urls.defaults import *
urlpatterns = patterns('',
# Example:
(r'^base/$', include('test.selecto.views')),
# Uncomment this for admin:
(r'^admin/$', include('django.contrib.admin.urls')),
)
########
the page url/base/ say
##########
AttributeError at /base/
'module' object has no attribute 'urlpatterns'
....
#########
I have tried to use also :
(r'^base/$', include('test.selecto.views.index')),
but say that the App index doesnt exist
Where is my error ?
Thanks !!
Marco
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---
- problem to solving URL Marco Amato
- Re: problem to solving URL Ivan Sagalaev
- Re: problem to solving URL Malcolm Tredinnick