Julio Nobrega wrote:

  Just add (concatenate? append?) another urlpatterns:

urlpatterns = patterns('project.apps.some_app.views',
(r'^some_url/$', 'index'),
)

urlpatterns += patterns('project.apps.another_app.views',
(r'^another_url/$', 'index'),
)
Thanks! I was actually thinking of this myself but thought there was a better way without breaking the order of URLs. But according to Adrian there isn't one.

Reply via email to