diff --git a/app/core/urls.py b/app/core/urls.py index 701baa5..b3519c9 100644 --- a/app/core/urls.py +++ b/app/core/urls.py @@ -16,9 +16,11 @@ Including another URLconf """ from django.contrib import admin from django.urls import path, include +from bird import views urlpatterns = [ # Dynamic sites + path("", views.bird_all, name="index"), path("aviary/", include("aviary.urls")), path("bird/", include("bird.urls")), path("costs/", include("costs.urls")), @@ -28,5 +30,5 @@ urlpatterns = [ # Allauth path("accounts/", include("allauth.urls")), # Static sites - path("", include("sites.urls")), + # path("", include("sites.urls")), ]