Maybe it is not too Satchmo specific error but Django general or
Grappelli.

General Django practice is first to try direct resolver for the
reported view, then reverse resolver of some functional view and if
all is functional to verify that the problematic view is not imported
more times to url patterns under the same name or the whole urls.py
included more times. (one time from satchmo via 'your_project.urls'
second time like 'urls', via 'SHOP_URLS', automatic and directly etc.)

Try this from easier to more complicated
$ python manage.py shell
 >>> from django.core import urlresolvers
 # try direct
 >>> urlresolvers.resolve('/admin/1/variations/')
 (<function variation_manager at 0x3161578>, (), {'product_id': '1'})
 # try reverse for any functional view
 >>> reverse("satchmo_shop_home")
 '/'
 >>> urlresolvers.reverse('satchmo_product', args=('1',))
 '/store/product/1/'
 # try with the smallest explicit sub urlconf
 >>> urlresolvers.reverse('satchmo_admin_variation_manager',
args=(1,), urlconf='satchmo_store.urls.base')
  '/admin/1/variations/'
 # larger
 >>>  urlresolvers.reverse('satchmo_admin_variation_manager',
args=(1,), urlconf='satchmo_store.urls')
 '/admin/1/variations/'
 # the largest root urlconf   (replace 'store.urls' by
'your_project.urls'
 >>>  urlresolvers.reverse('satchmo_admin_variation_manager',
args=(1,), urlconf='store.urls')
 '/admin/1/variations/'
 # exactly what failed in your example
 >>>  urlresolvers.reverse('satchmo_admin_variation_manager',
args=(1,))
 '/admin/1/variations/'


I do not use grappelli, but I remember
http://groups.google.com/group/satchmo-users/browse_thread/thread/184da37be07f65c1/

> Anyone???  Lack of activity has me concerned about satchmo.

Excuse, I was focused on coding very complicated things related really
to Satchmo.

On May 16, 12:55 pm, "greg.newman" <[email protected]> wrote:
> Anyone???  Lack of activity has me concerned about satchmo.  Is
> satchmo dead?
> I've rolled back to 0.9-1 from pypi and still get the same errors when
> adding production variations.
> Again, I don't want to patch satchmo since I'll be handing this off.
> Any help
> would be appreciated!!
>

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