You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
498 B
12 lines
498 B
from django.urls import path
|
|
from . import views
|
|
app_name ='newsApp'
|
|
|
|
urlpatterns = [
|
|
# path('company/',company,name='company'), #企业要闻
|
|
# path('industry/',industry,name='industry'), #行业新闻
|
|
# path('notice/',notice,name='notice'), #通知公告
|
|
path('news/<str:newName>/', views.news, name='news'), # 新闻列表
|
|
path('newDetail/<int:id>/', views.newDetail, name='newDetail'), # 新闻详情
|
|
path('search/', views.search, name='search'), # 新闻搜索
|
|
] |