1.8.1 landing_customer

This commit is contained in:
SDE
2024-11-15 13:54:53 +03:00
parent 1151744247
commit c23dd1ff4c
3 changed files with 251 additions and 0 deletions

View File

@@ -7,6 +7,9 @@ from .views import *
urlpatterns = [
path('', MainPage, name='main'),
path('mover_landing_page/', LandingMoverPage, name='mover_landing_page'),
path('customer_landing_page/', LandingCustomerPage, name='customer_landing_page'),
path('page/<str:url>/', StaticPageView, name='static_page'),
path('test_code', test_code, name='test_code'),
path('generate_routes/<int:routes_count>/', generate_routes, name='generate_routes'),