What I'm trying to do:
# urls.py
urlpatterns = patterns('',
(r'^info/(?P<user>[-\w+])/(?P<app>[-\w+])/', include(%app%.urls)),
)
which should display specific information that given user entered for the app. And I want the URL scheme to stay this way. Is it even possible? I think namespaces would do the trick but official documentation is too sparse and lacks good examples.
Can someone shed some light on this issue?