mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
6c61ca3d74
This enables {% url %} to honor request.urlconf set from process_request middleware methods. Thanks SmileyChris for the initial patch work. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11740 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
217 B
Python
9 lines
217 B
Python
from django.conf.urls.defaults import *
|
|
|
|
import urlconf_inner
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^test/me/$', urlconf_inner.inner_view, name='outer'),
|
|
url(r'^inner_urlconf/', include(urlconf_inner.__name__))
|
|
) |