Changes between Initial Version and Version 2 of Ticket #36699


Ignore:
Timestamp:
Oct 31, 2025, 7:55:39 AM (4 weeks ago)
Author:
Natalia Bidart
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36699 – Description

    initial v2  
    1515- `/logout/` requires POST by design for CSRF protection.
    1616- Example code:
    17   ```python
     17
     18{{{#!python
    1819  from django.contrib.auth import views as auth_views
    1920  urlpatterns = [
     
    2122      path('logout/', auth_views.LogoutView.as_view(next_page='/')),
    2223  ]
     24}}}
Back to Top