misc: use the django authentication system

This commit is contained in:
2023-11-20 12:24:23 +01:00
parent cac902259d
commit 25a693d28c
5 changed files with 42 additions and 0 deletions

View File

@ -249,3 +249,5 @@ TEMPLATES = [
WSGI_APPLICATION = "instance.wsgi.application"
LOGOUT_REDIRECT_URL = "/"

View File

@ -23,6 +23,7 @@ import aircox.urls
urlpatterns = aircox.urls.urls + [
path("admin/", admin.site.urls),
path("accounts/", include("django.contrib.auth.urls")),
path("ckeditor/", include("ckeditor_uploader.urls")),
path("filer/", include("filer.urls")),
]