XH_Digital_Management/common/urls.py

7 lines
311 B
Python
Raw Normal View History

2024-06-01 00:57:14 +08:00
from django.urls import path
2024-06-01 05:05:29 +08:00
from common.views import download_excel_template, common_excel_parse
2024-06-01 00:57:14 +08:00
urlpatterns = [
2024-06-01 05:05:29 +08:00
path('download_excel_template/<str:template_name>/', download_excel_template, name='download_excel_template'),
path('common_excel_parse/', common_excel_parse, name='common_excel_parse'),
2024-06-01 00:57:14 +08:00
]