mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@6039 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			10 lines
		
	
	
		
			303 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			303 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls.defaults import *
 | |
| import views
 | |
| 
 | |
| urlpatterns = patterns('',
 | |
|     (r'^no_template_view/$', views.no_template_view),
 | |
|     (r'^file_upload/$', views.file_upload_view),
 | |
|     (r'^get_view/$', views.get_view),
 | |
|     (r'^login_protected_redirect_view/$', views.login_protected_redirect_view)
 | |
| )
 |