[1주 프로젝트] mozilla Django 튜토리얼 따라하기 : 4일차

[1주 프로젝트] mozilla Django 튜토리얼 따라하기 : 4일차

1. templates

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', 'django.contrib.messages.context_processors.messages', ], }, }, ]

APP_DIRS : True

모든 app 들에서 templates를 자동으로 search해줌

https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Generic_views

728x90

from http://daily-studyandwork.tistory.com/79 by ccl(A) rewrite - 2021-12-21 23:27:08