Hi,

I'm having a slight problem;  I've got the 'mysite' django application
created as per the example on the help pages.  I've created an
application called polls which creates

polls/
    __init__.py
    models.py
    views.py


All this works fine; i've editing the INSTALLED_APPS within settings
to inclide mysite.polls; basically everything works fine as per the
examples, however in my personal project I want to add a folder called
'views' within polls e.g.

polls/
    __init__.py
    models.py
    views.py
    views/
         main.py
         main2.py

in practice i want to remove the views.py file from the polls folder
and create all my seperate views within the subfolder 'views'.

within my urls.py file i'm using the following

(r'^now2/$', 'mysite.polls.views.main.indexes'),

with /polls/views/main.py i've got

from django.http import HttpResponse
from django.shortcuts import render_to_response

def indexes(request):
        return render_to_response('test.html', {})

The problem being is that when I call 'http://127.0.0.1:8000/now2/' I
get the following error;

Request Method:         GET
Request URL:    http://127.0.0.1:8000/now2/
Exception Type:         ViewDoesNotExist
Exception Value:        Could not import babybook.subscriber.views.main.
Error was: No module named views.main
Exception Location:     C:\Python25\lib\site-packages\django\core
\urlresolvers.py in _get_callback, line 181
Python Executable:      C:\Python25\python.exe
Python Version:         2.5.1

This is really anoying because i don't want to include all my views
within the /polls/view.pf file, but categorised accordinly within /
polls/views/****.py

Can anyone please explain the process for doing this?
Thanks


--~--~---------~--~----~------------~-------~--~----~
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