mirror of
				https://github.com/django/django.git
				synced 2025-11-04 05:35:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.conf.urls import url
 | 
						|
 | 
						|
from . import views
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    url(r'^noslash$', views.empty_view),
 | 
						|
    url(r'^slash/$', views.empty_view),
 | 
						|
    url(r'^needsquoting#/$', views.empty_view),
 | 
						|
]
 |