14 lines
534 B
Python
14 lines
534 B
Python
"""营销官网路由(静态页 + 价格页读套餐配置)。"""
|
|
|
|
from django.urls import path
|
|
|
|
from .views import home, pricing, industry_food, industry_hardware, industry_autoparts
|
|
|
|
urlpatterns = [
|
|
path("", home, name="site-home"),
|
|
path("pricing/", pricing, name="site-pricing"),
|
|
path("industry/food/", industry_food, name="site-industry-food"),
|
|
path("industry/hardware/", industry_hardware, name="site-industry-hardware"),
|
|
path("industry/autoparts/", industry_autoparts, name="site-industry-autoparts"),
|
|
]
|