no seperate login url/page
This commit is contained in:
parent
446822e5e6
commit
813ca89161
1 changed files with 3 additions and 1 deletions
|
@ -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")),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue