Django template 파일
2021. 4. 24. 12:13ㆍ파이썬/Django
아래 2개의 디렉토리 모두 template이 적용됨
/templates
/app/templates
아래와 같은 경우, /temppates가 우선순위 높음
def index(request) :
template_name = 'index.html'
context = {}
return render(request, template_name, context)
아래와 같은 경우, /app/temppates가 우선순위 높음
def index(request) :
template_name = 'ocrupload/index.html'
context = {}
return render(request, template_name, context)
'파이썬 > Django' 카테고리의 다른 글
django.utils.datastructures.MultiValueDictKeyError: 'image' (0) | 2021.04.25 |
---|---|
Django 파일업로드 (0) | 2021.04.25 |
Django Page not found(404) (0) | 2021.04.24 |
pytube.exceptions.RegexMatchError: get_ytplayer_config: could not find match for config_patterns (0) | 2021.04.10 |
Forbidden (403) : CSRF verification failed. Request aborted. (0) | 2021.04.10 |