TEMPLATE Ready

This commit is contained in:
2026-09-06 00:02:20 +03:00
parent 6842471664
commit 7ec112134a
16 changed files with 263 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.IndexView.as_view(), name='index'),
]