django templates nested structure - pai-plznw4me/django-initializer GitHub Wiki
django μμ neseted block νμμ templates μ μ΄λ»κ² λ€λ£¨λμ§ λ³΄μ¬μ£Όλ post

layout
|- templates
|- layout
|- base.html
# layout/base.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
{% block contents %}
{% endblock %}
</body>
</html>
nested
|- templates
|- nested
|- base.html
|- index.html
|- search.html
|- show.html
{% extends 'layout/base.html' %}
{% block contents %}
{% block search %}
{% endblock %}
{% block show %}
{% endblock %}
{% endblock %}
{% extends 'nested/base.html' %}
{% block search %}
{% include 'nested/search.html' %}
{% endblock %}
{% block show %}
{% include 'nested/show.html' %}
{% endblock %}