Compare commits
1 Commits
31-projekt
...
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'
|
||||
|
||||
LOGIN_URL = '/login/'
|
||||
LOGIN_URL = '/account/login/'
|
||||
@@ -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'),),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user