mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Thanks to @dmyerscoug for the report and original patch and to @alasdairnicol for the added tests.
		
			
				
	
	
		
			9 lines
		
	
	
		
			221 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			221 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import patterns, include, url
 | |
| 
 | |
| from django.contrib import admin
 | |
| 
 | |
| urlpatterns = patterns('',
 | |
|     # This is the same as in the default project template
 | |
|     url(r'^admin/', include(admin.site.urls)),
 | |
| )
 |