반응형 [개발] 프레임워크/Django1 django.template.exceptions.TemplateDoesNotExist 해결방법 django로 웹 페이지를 만들고 있다. TemplateDoesNotExist 에러가 발생했다. 어떻게 해결해야 할까? BASE_DIR을 지정한다. TEMPLATES[0]["DIRS"]에 template 디렉터리 경로를 입력한다. BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'resources')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ '.. 2021. 9. 2. 이전 1 다음 반응형