misc: use the django authentication system

This commit is contained in:
2023-11-20 12:24:23 +01:00
parent 8b3d3a2483
commit 25f6d91903
5 changed files with 38 additions and 0 deletions

View File

@ -250,3 +250,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")),
]