Compare commits
1 Commits
20-t-style
...
fix_3_url_
| Author | SHA1 | Date | |
|---|---|---|---|
| f7f25b9f0c |
@@ -127,4 +127,4 @@ BASE_DIR='static' #von ben8 hinzugefügt
|
|||||||
|
|
||||||
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
||||||
|
|
||||||
LOGIN_URL = '/login/'
|
LOGIN_URL = '/account/login/'
|
||||||
@@ -16,11 +16,12 @@ Including another URLconf
|
|||||||
"""
|
"""
|
||||||
from django.contrib import admin # type: ignore
|
from django.contrib import admin # type: ignore
|
||||||
from django.urls import path, include
|
from django.urls import path, include
|
||||||
|
from django.contrib.auth import login
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path('admin/', admin.site.urls),
|
path('admin/', admin.site.urls),
|
||||||
path('account/', include('accounts.urls')),
|
path('account/', include('accounts.urls')),
|
||||||
path('', include('homepage.urls')),
|
path('', include('homepage.urls')),
|
||||||
path('play/', include('components.urls')),
|
path('play/', include('components.urls')),
|
||||||
path('library/', include('library.urls')),
|
path('library/', include('library.urls'),),
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user