fix website

fix website
This commit is contained in:
jnfire 2022-08-02 09:06:45 +02:00
parent bb5423fcc4
commit fe49b302ae
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
from django.urls import path
from apps.web.views import home
from apps.website.views import home
urlpatterns = [
path("", home, name="home"),

View File

@ -17,6 +17,6 @@ from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path("", include("apps.web.urls")),
path("", include("apps.website.urls")),
path("admin/", admin.site.urls),
]