from django.urls import path from .views import * urlpatterns = [ path('sma_reg_list/', sma_reg_list_view, name='sma_reg_list'), path('sma_reg_list/add/', sma_reg_list_add, name='sma_reg_list_add'), path('sma_reg_list/modify/', sma_reg_list_modify, name='sma_reg_list_modify'), path('sma_reg_list/delete/', sma_reg_list_delete, name='sma_reg_list_delete'), path('followers_history//', view_followers_history, name='view_followers_history'), path('followers_history//add/', add_followers_history, name='add_followers_history'), path('followers_history//edit/', edit_followers_history, name='edit_followers_history'), path('followers_history//delete/', delete_followers_history, name='delete_followers_history'), path('acc_op_mgmt_list/', acc_op_mgmt_list_view, name='acc_op_mgmt_list'), path('acc_op_mgmt_list/add/', acc_op_mgmt_list_add, name='acc_op_mgmt_list_add'), path('acc_op_mgmt_list/modify/', acc_op_mgmt_list_modify, name='acc_op_mgmt_list_modify'), path('acc_op_mgmt_list/delete/', acc_op_mgmt_list_delete, name='acc_op_mgmt_list_delete'), path('account_update//', view_update_records, name='view_update_records'), path('account_update//add/', add_update_record, name='add_update_record'), path('update_record//', edit_update_record, name='edit_update_record'), path('update_record//delete/', delete_update_record, name='delete_update_record'), path('web_reg_list/', web_reg_list_view, name='web_reg_list'), path('web_reg_list/add/', web_reg_list_add, name='web_reg_list_add'), path('web_reg_list/modify/', web_reg_list_modify, name='web_reg_list_modify'), path('web_reg_list/delete/', web_reg_list_delete, name='web_reg_list_delete'), path('website_expiration_modification//records/', website_expiration_modification_records, name='website_expiration_modification_records'), path('website_expiration_modification/add_record/', add_website_expiration_modification_record, name='add_website_expiration_modification_record'), path('web_maint_rec_list/', web_maint_rec_list_view, name='web_maint_rec_list'), path('web_maint_rec_list/add/', web_maint_rec_list_add, name='web_maint_rec_list_add'), path('web_maint_rec_list/modify/', web_maint_rec_list_modify, name='web_maint_rec_list_modify'), path('web_maint_rec_list/delete/', web_maint_rec_list_delete, name='web_maint_rec_list_delete'), ]