I need to customize my store based on customer location, so the url looks like http://www.mysite.com/chicago/catalog/xxx. I can use urlpatterns = patterns('', (r'^(?P<city>\w+)/', include('satchmo_store.urls')), ) to parse the city string and send it to the view function. The problem is that I have to modify all the default view functions in Satchmo to handle the new <city> argument. I don't want to do that because it causes problem for future Satchmo upgrade. Is there a way to achieve my goal without changing the Satchmo view function?
Thanks, Steven -- 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.
