|
|
|||
File indexing completed on 2026-04-27 07:41:45
0001 from django.contrib import admin 0002 from django.urls import path, include 0003 from remote_app.views import logout_view 0004 0005 urlpatterns = [ 0006 path('admin/', admin.site.urls), 0007 path('accounts/logout/', logout_view, name='logout'), 0008 path('accounts/', include('django.contrib.auth.urls')), 0009 path('', include('remote_app.urls')), 0010 ]
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|