<Django 공부하기> templates 폴더를 Root Directory에 정의하기 (templates 폴더를 apps 폴더 안에서 찾게 하지 않기)
이번에는 templates 폴더에 대한 탐구를 해볼까 한다. 기본적으로 우리가 처음 Django Project를 시작하면 settings.py에 다음과 같이 설정되어 있다: # settings.py ... TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', '..