mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
eb351ac9cb
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17934 bcc190cf-cafb-0310-a4f2-bffc1f526a37
13 lines
443 B
Python
13 lines
443 B
Python
from django.conf.urls import patterns, url
|
|
from django.template import Template, Context
|
|
from django.http import HttpResponse
|
|
|
|
def inner_view(request):
|
|
content = Template('{% url "outer" as outer_url %}outer:{{ outer_url }},'
|
|
'{% url "inner" as inner_url %}inner:{{ inner_url }}').render(Context())
|
|
return HttpResponse(content)
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^second_test/$', inner_view, name='inner'),
|
|
)
|