Hello,

I believe my error is simple and no brainer to someone well experienced, 
but I am not sure what to do to fix it.  I have followed the tutorials 
on the documentation, the diaries, and Alvarez and receive the same 
error, so I'm thinking its the same issue. 

In 'edit site settings' I am able to select the model I have made under 
"Product Model Options".

When I go to a Product and try to "Add My Product Model" I get a 404 page:

"Using the URLconf defined in |mySite.urls|, Django tried these URL 
patterns, in this order: "
"The current URL, |admin/myApp/myModel/add/|, didn't match any of these."

Am I supposed to create templates for the admin view for these models I 
just created or change the urls.py to something magical? Any insight on 
this would be a great help if any of this makes any sense.  Thanks.

My folder structure is as follows:
src
|--mySite
    |--myApp
        |--admin.py
        |--config.py
        |--models.py
|--satchmo-trunk

mySite>urls.py:
from django.conf.urls.defaults import *
from satchmo_store.urls import urlpatterns as satchmopatterns
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
   (r'^admin/', include(admin.site.urls)),
)

urlpatterns +=satchmopatterns


-Nick

--

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.


Reply via email to