landing페이지 수정, 카테고리 리스트 정리
All checks were successful
Build And Test / build-and-push (push) Successful in 5m13s
All checks were successful
Build And Test / build-and-push (push) Successful in 5m13s
This commit is contained in:
@ -4,7 +4,10 @@ from . import views
|
||||
app_name = 'butler'
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.hello_view, name='landing'), # 루트 경로에서 hello_view 호출
|
||||
# path('', views.hello_view, name='landing'), # 루트 경로에서 hello_view 호출
|
||||
# Landing Page
|
||||
path('', views.LandingPageView.as_view(), name='landing'), # 클래스 기반 뷰(CBV) 호출
|
||||
|
||||
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'),
|
||||
|
Reference in New Issue
Block a user