Refactor project structure: remove 'home' app and create 'front' app with updated templates, views, and URLs

This commit is contained in:
Jesper Thøgersen 2025-09-20 17:19:43 +02:00
parent 97e8cf465c
commit 269ee8cbce
11 changed files with 6 additions and 18 deletions

View file

@ -19,5 +19,5 @@ from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('home.urls')),
path('', include('front.urls')),
]