In the pasted text it looks like that "NoReverseMatch: Reverse for
'satchmo_print_shipping' with arguments '()' and keyword arguments '{'doc':
'invoice', 'id': 4}' not found." is the error message you are looking for.

In satchmo/shop/models.py in line 746 you have the lookup request and
somehow Django seems not to be able to find the function displayDoc (which
should be according to satchmo/urls_base.py in the file
satchmo/shipping/views.py at line 15).

This can be the result of an error inside satchmo/shipping/views.py which
prevents it from being executed - you must check in your code.


Here again the important files and the code (always trunk):

satchmo/shop/models.py:
746 url = urlresolvers.reverse('satchmo_print_shipping', None, None, {'doc'
: 'invoice', 'id' : self.id})
satchmo/urls_base.py:
17 (r'^admin/print/(?P<doc>[-\w]+)/(?P<id>\d+)',
'satchmo.shipping.views.displayDoc', {}, 'satchmo_print_shipping'),
satchmo/shipping/views.py
15 def displayDoc(request, id, doc):




-----Ursprüngliche Nachricht-----
Von: [email protected] [mailto:[EMAIL PROTECTED]
Im Auftrag von jhugo
Gesendet: Donnerstag, 20. November 2008 20:26
An: Satchmo users
Betreff: Re: shop orders error


thanks for the replay. I caught the exception, its a templates syntax error
and here's my traceback url:
http://dpaste.com/92534/



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