Джанго проект

This commit is contained in:
Dronminator
2023-05-22 13:36:25 +03:00
parent f82732cd02
commit c5f7fc826e
137 changed files with 27484 additions and 3 deletions
@@ -0,0 +1,9 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('html', views.html, name='html'),
path('newpage', views.newpage, name='newpage')
]