From 98ded3a1aa2fd8a91053405293725fd9598c2d83 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sat, 21 Oct 2023 15:15:57 +0200 Subject: [PATCH] Add: url config for auth & furaffinity apps --- archivist/core/urls.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/archivist/core/urls.py b/archivist/core/urls.py index 7a56b89..cc9a25f 100644 --- a/archivist/core/urls.py +++ b/archivist/core/urls.py @@ -14,10 +14,14 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin -from django.urls import path +from django.urls import path, include admin.site.site_header = 'Gallery Archivist Django Admin Panel' urlpatterns = [ - path('admin/', admin.site.urls), + path('admin/', admin.site.urls), # Django admin route + path("", include("apps.authentication.urls")), # Auth routes - login / register + + path("", include("sites.furaffinity.urls")), + ]