Compare commits

...

1 Commits

Author SHA1 Message Date
f7f25b9f0c Weiterleitung Bibliothek 2025-03-08 12:30:45 +01:00
2 changed files with 3 additions and 2 deletions

View File

@@ -127,4 +127,4 @@ BASE_DIR='static' #von ben8 hinzugefügt
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
LOGIN_URL = '/login/'
LOGIN_URL = '/account/login/'

View File

@@ -16,11 +16,12 @@ Including another URLconf
"""
from django.contrib import admin # type: ignore
from django.urls import path, include
from django.contrib.auth import login
urlpatterns = [
path('admin/', admin.site.urls),
path('account/', include('accounts.urls')),
path('', include('homepage.urls')),
path('play/', include('components.urls')),
path('library/', include('library.urls')),
path('library/', include('library.urls'),),
]