Changes between Initial Version and Version 2 of Ticket #36699
- Timestamp:
- Oct 31, 2025, 7:55:39 AM (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36699 – Description
initial v2 15 15 - `/logout/` requires POST by design for CSRF protection. 16 16 - Example code: 17 ```python 17 18 {{{#!python 18 19 from django.contrib.auth import views as auth_views 19 20 urlpatterns = [ … … 21 22 path('logout/', auth_views.LogoutView.as_view(next_page='/')), 22 23 ] 24 }}}