Python/Django

[Django ] VS Code 에서 Django templates Path 인식 못할 때

yubi5050 2022. 5. 26. 11:45

VS Code 에서 Django 프로젝트를 실행하다 보면 templates Path 인식 못할 때가 있다.

Error 메시지

아래와 같이 TMEMPLATES PATH를 직접 잡아서 추가해주면 된다.

## Settings.py 

import os
TEMPLATE_DIR = os.path.join(BASE_DIR, 'templates') # myprojet/templates

TEMPLATES = [
    {
    	...
        'DIRS': [TEMPLATE_DIR],
        ...
    },
]

참고링크 : https://liebe97.tistory.com/21