(Django 기초) template의 extends, include, render

Posted by : at

Category : Django



template의 extends, include

  • extends -> 다른 template을 가져와서 그 기반으로 제작
  • include -> 다른 template에 내용을 추가
    • extends로 바탕을 그리고 include로 내용을 채운다 라고 받아들이자.

???

일단 해보자


Template\base.html을 만들어보자

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    Hello world!
</body>
</html>

pragmatic\settins.py에서 아래를 추가

# ...

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        # 'DIRS': [],
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        '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',
            ],
        },
    },
]

# ...

account의 view.py를 수정해보자

def hello_world(request):
    return render(request, 'base.html')


About Taehyung Kim

안녕하세요? 8년차 현업 C++ 개발자 김태형이라고 합니다. 😁 C/C++을 사랑하며 다양한 사람과의 협업을 즐깁니다. ☕ 꾸준한 자기개발을 미덕이라 생각하며 노력중이며, 제가 얻은 지식을 홈페이지에 정리 중입니다. 좀 더 상세한 제 이력서 혹은 Private 프로젝트 접근 권한을 원하신다면 메일주세요. 😎

Star
Useful Links