728x90
반응형
1. 장고에서 extends와 include 차이
- extends : 미리 만들어 놓은 html파일을 가져와서 이것을 바탕으로 template 채워나는 구조
- include : 조그만 조각같은 것을 가져와 붙이는 개념
2. templates 폴더 만들고 html 파일 안에 생성
{% extends 'base.html' %}
<!-- base.html 템플릿를 기반으로 안에 내용만 바꿔줌-->
{% block content %}
<div style="border-radius: 1rem; margin: 2rem; text-align: center">
<form action="/account/hello_world/" method="post">
{% csrf_token %}
<div>
<input type="submit" class="btn btn-primary" value="POST">
</div>
</form>
{% endblock %}
- hello_world.html 파일 생성
- main App에서 작성한 base.html 로 뼈대 구성 후 extends로 안에 내용만 수정
- account > views.py 에 html 등록
3. settings.py 에 TEMPLATES안에 생성한 template 등록
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'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',
],
},
},
]
4. 소스 추가 한 것 git commit
반응형
'Backend > Django' 카테고리의 다른 글
django 05. style, 구글 폰트, 네이버 글꼴을 통해 Header, Footer 꾸미기 (0) | 2021.10.05 |
---|---|
django 04. include/ extends / block 구문을 이용한 뼈대 html 만들기 (0) | 2021.10.05 |
django 02. Git 활성화, 환경변수 분리, commit (0) | 2021.10.05 |
django 01. 첫 앱 시작, 그리고 기본적인 view 만들기 (0) | 2021.10.05 |
[Django] Settings.py 파일 공통, 개발, 운영 파일로 나누어 환경 설정 분리하기 (0) | 2021.10.04 |