This commit is contained in:
10
nhnc_mgmt/urls.py
Normal file
10
nhnc_mgmt/urls.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'nhnc_mgmt'
|
||||
|
||||
urlpatterns = [
|
||||
path('igw', views.igw_view, name='igw'),
|
||||
path('igw/add/', views.add_igw_record, name='igw_add'), # 데이터 추가 경로
|
||||
path('igw/delete/', views.delete_igw_records, name='igw_delete'), # 삭제 URL 추가
|
||||
]
|
Reference in New Issue
Block a user