This commit is contained in:
Flatlogic Bot 2025-11-10 17:44:21 +00:00
parent 22cb958687
commit be8cb04ca8
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
from django.urls import path
from .views import home
from .views import index
urlpatterns = [
path("", home, name="home"),
path("", index, name="index"),
]