XH_Digital_Management/common/urls.py

8 lines
417 B
Python

from django.urls import path
from common.views import download_excel_template, common_excel_parse, save_excel_table_data
urlpatterns = [
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'),
path('save_excel_data/', save_excel_table_data, name='save_excel_table_data'),
]