notice 등록 기능 구현
This commit is contained in:
@ -5,7 +5,8 @@ app_name = 'butler'
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.hello_view, name='landing'), # 루트 경로에서 hello_view 호출
|
||||
path('notice', views.notice_view, name='notice'),
|
||||
path('notice', views.notice_list, name='notice_list'),
|
||||
path('create_notice/', views.create_notice, name='create_notice'), # 포스트 작성
|
||||
path('notice/<int:pk>/', views.notice_detail_view, name='notice_detail'),
|
||||
path('ip_mgmt', views.ip_mgmt_view, name='ip_mgmt'),
|
||||
path('ip-mgmt/add/', views.add_ip_record, name='ip_mgmt_add'), # 데이터 추가 경로
|
||||
|
Reference in New Issue
Block a user