0.3.4 contacts page

This commit is contained in:
SDE
2023-12-09 21:03:09 +03:00
parent 470914f431
commit 28a00680e5
4 changed files with 43 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ from .views import *
urlpatterns = [
path('', MainPage, name='main'),
path('contacts/', contacts_view, name='contacts'),
path('page/<str:url>/', StaticPageView, name='static_page'),
path('test_code', test_code, name='test_code'),
]