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,