Create new app for homepage

This commit is contained in:
Juhn-Vitus Saß
2025-02-14 16:27:57 +01:00
parent 01f28c0841
commit 897ee79237
21 changed files with 78 additions and 907 deletions

View File

@@ -16,10 +16,9 @@ Including another URLconf
"""
from django.contrib import admin # type: ignore
from django.urls import path, include
from . import views
urlpatterns = [
path('admin/', admin.site.urls),
path('account/', include('accounts.urls')),
path('', views.home, name="core_home"),
path('', include('homepage.urls')),
]