From ac31336acc1bdcc61d5982faf1e679b530176299 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Wed, 18 Mar 2026 10:24:14 +0100 Subject: [PATCH] feat(kusry/urls.py): include home urls --- kursy/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kursy/urls.py b/kursy/urls.py index 36e962a..7198f98 100644 --- a/kursy/urls.py +++ b/kursy/urls.py @@ -20,7 +20,9 @@ urlpatterns = [ path("accounts/profile/", views.profile, name="profile"), path("accounts/signup/", views.signup, name="signup"), path("i18n/", include("django.conf.urls.i18n")), + path("", include("home.urls")), path("calendar/", views.calendar, name="calendar"), + # TODO: move occurrence related urls to home app path( "occurrence//", views.occurrence_detail,