Django Тег include
Include
Тег include
дозволяє включити шаблон у поточний шаблон.
Це корисно, якщо у вас є блок вмісту, який є однаковим для багатьох сторінок.
Приклад
templates/footer.html
:
<p>You have reached the bottom of this page, thank you for your time.</p>
templates/template.html
:
<h1>Hello</h1>
<p>This page contains a footer in a template.</p>
{% include 'footer.html' %}
Виконати приклад »
Змінні в Include
Ви можете надсилати змінні в шаблон за допомогою ключового слова with
.
У включеному файлі ви посилаєтеся на змінні за допомогою {{
variablename }}
синтаксису:
Приклад
templates/mymenu.html
:
<div>HOME | {{ me }} | ABOUT | FORUM | {{ sponsor }}</div>
templates/template.html
:
<!DOCTYPE html>
<html>
<body>
{% include "mymenu.html" with me="TOBIAS" sponsor="W3SCHOOLS" %}
<h1>Welcome</h1>
<p>This is my webpage</p>
</body>
</html>
Виконати приклад »