Hmm ... couple edits may be in order ...
First off, judging by your urls.py, you have a project directory like this:
storename
--site
----urls.py
Is this correct?
You'll want to try changing the url pattern for store to:
(r'^store/', include('storename.site.urls')),
And try this in place of r'':
(r'^$', include('storename.site.urls')),
You want those patterns to start with the '^' character to indicate you want
a urlpattern matched from the beginning of the url.
Additionally, you don't appear to be importing Satchmo's urls.
Try adding this in:
from satchmo_store.urls import urlpatterns
Now, if you want Satchmo to be the default owner of url patterns, place the
above line before the beginning of your existing urls (where you currently
have the line):
urlpatterns = patterns('',
If you place the Satchmo import above that line, you'll want to change that
line to:
urlpatterns += patterns('',
However, if you want your urls to be recognized before Satchmo's, then do
something along these lines:
from satchmo_store.urls import urlpatterns as satchmopatterns
urlpatterns = patterns('',
... existing urls with corrections made ...
)
urlpatterns += satchmopatterns
Now you'll have Satchmo's patterns registered and satchmo_site_settings
should be found without any problems.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Satchmo 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/satchmo-users?hl=en
-~----------~----~----~----~------~----~------~--~---