"""config URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""fromdjango.contribimportadminfromdjango.urlsimportpath,includeurlpatterns=[path('admin/',admin.site.urls),path('',include('dashboard.urls')),#dashboard 폴더에 urls 파일 경로 설정
]
1.6 실행결과
1
2
fromIPython.displayimportImage# 주피터 노트북에 이미지 삽입
Image("C://Users/MyCom/jupyter-tutorial/Django-Project/Django-Inventory-System-Web/data/8.png")
1.7 dashboard 폴더 views.py 파일 수정
관리자 페이지 HttpResponse 함수 만들어줍니다.
HttpResponse
html 파일, 이미지 등 다양한 응답을 해줄 수 있습니다. 그리고 FBV 기준으로 HttpResponse 가 없다면 오류를 발생합니다. 하나의 함수는 최소 하나의 HttpResponse 을 반환해야합니다. 이는 views 에서 검사하는게 아니라 middleware 에서 검사를 하게 됩니다.
1
2
fromIPython.displayimportImage# 주피터 노트북에 이미지 삽입
Image("C://Users/MyCom/jupyter-tutorial/Django-Project/Django-Inventory-System-Web/data/9.png")
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fromdjango.shortcutsimportrender# HttpResponse: 응답에 대한 메타정보를 가지고 있는 객체
fromdjango.httpimportHttpResponsedefindex(request):returnHttpResponse('메인 페이지')'''
예시)
return render(request, 'polls/index.html', context)
render() 함수는 request 객체를 첫번째 인수로 받고, 템플릿 이름을 두번째 인수로 받으며, context 사전형 객체를 세전째 선택적(optional) 인수로 받습니다. 인수로 지정된 context로 표현된 템플릿의 HttpResponse 객체가 반환됩니다.
'''defstaff(request):returnHttpResponse('관리자 페이지')
Leave a comment