|
|
@@ -2,9 +2,9 @@ from django.conf.urls import url
|
|
|
from django.views.static import serve
|
|
|
|
|
|
from apps.Equipment.views import (
|
|
|
- Back_Manage, CKArticle_View, Contrast_View, CropCount, Cropdata,
|
|
|
- Dorm_Check, Dorm_Check_List, Dorm_Detail, Dorm_Img, Dorm_List, Dorm_Photo,Farm_list,
|
|
|
- Dorm_Pub, Equip_Check, Equip_Check_List, Equip_Photo, Equip_Pub,
|
|
|
+ Back_Manage, CKArticle_View, Contrast_View, CropCount, Cropdata,Farm_Check,Farm_Check_List,
|
|
|
+ Dorm_Check, Dorm_Check_List, Dorm_Detail, Dorm_Img, Dorm_List, Dorm_Photo,Farm_list,Sightsee_Check,Sightsee_Check_List,
|
|
|
+ Dorm_Pub, Equip_Check, Equip_Check_List, Equip_Photo, Equip_Pub,Sightsee_Pub,
|
|
|
Equip_Show_Detail, Equip_Show_List, Equip_Test, Farm_Choice, Farm_List,
|
|
|
Farm_Mark, Garden_Check, Garden_Check_List, Garden_Detail,Garden_Intro, Garden_List,Tourist,Tourist_List,
|
|
|
Garden_Manage_New, Garden_Manage_View, Garden_Pub,
|
|
|
@@ -142,6 +142,8 @@ urlpatterns = [
|
|
|
url(r'^dorm_pub$', Dorm_Pub.as_view(), name='dorm_pub'),
|
|
|
url(r'^news_pub$', News_Pub.as_view(), name='news_pub'),
|
|
|
|
|
|
+ url(r'^sightsee_pub$', Sightsee_Pub.as_view(), name='sightsee_pub'),
|
|
|
+
|
|
|
|
|
|
url(r'^video_check$', Video_Check.as_view(), name='video_check'),#视频审核
|
|
|
url(r'^video_check_list$', Video_Check_List.as_view(), name='video_check_list'),#视频审核未通过页面
|
|
|
@@ -162,6 +164,12 @@ urlpatterns = [
|
|
|
url(r'^dorm_check$', Dorm_Check.as_view(), name='dorm_check'),#民宿审核
|
|
|
url(r'^dorm_check_list$', Dorm_Check_List.as_view(), name='dorm_check_list'),#民宿审核页面
|
|
|
|
|
|
+ url(r'^farm_check$', Farm_Check.as_view(), name='farm_check'),#农场审核
|
|
|
+ url(r'^farm_check_list$', Farm_Check_List.as_view(), name='farm_check_list'),#农场审核页面
|
|
|
+
|
|
|
+ url(r'^sightsee_check$', Sightsee_Check.as_view(), name='dorm_check'),#景点审核
|
|
|
+ url(r'^sightsee_check_list$', Sightsee_Check_List.as_view(), name='sightsee_check_list'),#景点审核页面
|
|
|
+
|
|
|
# 视频上传
|
|
|
url(r'^video_upload$', Video_Upload.as_view(), name='video_upload'),
|
|
|
url(r'^video_photo$', Video_Photo.as_view(), name='video_photo'),
|