From 813ca89161b31de28c99f6090024b4e10fc72e18 Mon Sep 17 00:00:00 2001 From: gw3000 Date: Sat, 15 Jul 2023 21:33:46 +0200 Subject: [PATCH] no seperate login url/page --- app/core/urls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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")), ]