This commit is contained in:
2024-06-04 22:08:15 +02:00
commit e899252f31
74 changed files with 1969 additions and 0 deletions

8
app/app_site/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path
from .views import HomeView
app_name = "app_site"
urlpatterns = [
path('', HomeView.as_view(), name='home'),
]