16 lines
597 B
Python
16 lines
597 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from django.conf.urls.static import static
|
|
from django.conf import settings
|
|
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'),
|
|
] |