Add: url config for auth & furaffinity apps
This commit is contained in:
parent
6c6c6b4b6d
commit
98ded3a1aa
1 changed files with 6 additions and 2 deletions
|
@ -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")),
|
||||
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue