from django.template.loader import render_to_string
def monthly_challenge(request, month):
try:
challenge_text = monthly_challenges[month]
return render(request, "challenges/challenge.html",{
"text": challenge_text,
"month_name": month.capitalize(),
})
except:
response_data = render_to_string("404.html")
return HttpResponseNotFound(response_data)
#raise Http404("Invalid month")
render_to_string 함수에 "404.html" 인자 전달
setting.py
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
BASE_DIR / "templates"
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
'DIRS' 에 경로를 추가 해주었기 떄문에 templates 폴더를 찾을 수 있음.
장고는 templates/404.html 을 자동으로 찾아 서빙해준다.
'Django' 카테고리의 다른 글
다이나믹 라우팅 (0) | 2024.05.10 |
---|---|
CSS 파일 가져오기 (0) | 2024.05.09 |
파이참 장고 HTML 자동 완성 설정하기 (0) | 2024.05.05 |
템플릿 서빙 방법 및 문법 (0) | 2024.05.05 |
reverse (0) | 2024.05.02 |