mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@17547 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			11 lines
		
	
	
		
			256 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			256 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import url
 | |
| from django.conf.urls import patterns
 | |
| from django.views.generic import TemplateView
 | |
| 
 | |
| 
 | |
| view = TemplateView.as_view(template_name='dummy.html')
 | |
| 
 | |
| urlpatterns = patterns('',
 | |
|     url(r'^nl/foo/', view, name='not-translated'),
 | |
| )
 |