mirror of
				https://github.com/django/django.git
				synced 2025-11-03 21:25:09 +00:00 
			
		
		
		
	Thanks Peter Schmidt for the report and the initial patch. Thanks to Oktay Sancak for writing the original failing test and Alvin Savoy for supporting contributing back to the community.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.conf.urls import url
 | 
						|
from django.contrib.auth import views
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    url(r'^accounts/logout/$', views.logout, name='logout'),
 | 
						|
]
 |