mirror of
https://github.com/django/django.git
synced 2025-02-06 23:45:22 +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.
7 lines
151 B
Python
7 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'),
|
|
]
|