mirror of
				https://github.com/django/django.git
				synced 2025-10-30 00:56:09 +00:00 
			
		
		
		
	Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
		
			
				
	
	
		
			17 lines
		
	
	
		
			504 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			504 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import include, url
 | |
| from django.contrib import admin
 | |
| 
 | |
| from . import views
 | |
| 
 | |
| ns_patterns = ([
 | |
|     url(r'^xview/func/$', views.xview_dec(views.xview), name='func'),
 | |
| ], 'test')
 | |
| 
 | |
| urlpatterns = [
 | |
|     url(r'^admin/', admin.site.urls),
 | |
|     url(r'^admindocs/', include('django.contrib.admindocs.urls')),
 | |
|     url(r'^', include(ns_patterns, namespace='test')),
 | |
|     url(r'^xview/func/$', views.xview_dec(views.xview)),
 | |
|     url(r'^xview/class/$', views.xview_dec(views.XViewClass.as_view())),
 | |
| ]
 |