mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed a regression in2f16ff5a6c. Thanks Tim Graham for the review. Backport of625b8e9295from master
		
			
				
	
	
		
			26 lines
		
	
	
		
			412 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			412 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import include, url
 | |
| from django.views import View
 | |
| 
 | |
| 
 | |
| def view1(request):
 | |
|     pass
 | |
| 
 | |
| 
 | |
| def view2(request):
 | |
|     pass
 | |
| 
 | |
| 
 | |
| class View3(View):
 | |
|     pass
 | |
| 
 | |
| 
 | |
| nested = ([
 | |
|     url(r'^view1/$', view1, name='view1'),
 | |
|     url(r'^view3/$', View3.as_view(), name='view3'),
 | |
| ], 'backend')
 | |
| 
 | |
| urlpatterns = [
 | |
|     url(r'^some/path/', include(nested, namespace='nested')),
 | |
|     url(r'^view2/$', view2, name='view2'),
 | |
| ]
 |