I\'ve been working with Django for a while now (currently on version 1.2), but just recently started working on an app that needs to support multiple instances. E.g., the p
There is a doc page about reversing namespaced urls.
http://docs.djangoproject.com/en/dev/topics/http/urls/#topics-http-reversing-url-namespaces
Either reverse('instance1:myapp.urls.some_view') or reverse('instance1:view_name') should work, or both :) - i've never tried this myself.
reverse('instance1:myapp.urls.some_view')
reverse('instance1:view_name')