DJANGO 入门
DJANGO 视图
DJANGO URL
DJANGO 模型
DJANGO 模板/标签
DJANGO 查询集
DJANGO 静态文件
DJANGO 管理员

Menu
×
×
正确

练习:

我们如何在Django模板中包含一个名为'footer.html'的文件?

<h1>Hello</h1> <p>This is a Django template with a footer.</p> {% include 'footer.html' %}
<h1>Hello</h1> <p>This is a Django template with a footer.</p> {% include "footer.html" %}

不正确

点击 此处 重试

正确

下一题 ❯
<h1>Hello</h1>

<p>This is a Django template with a footer.</p>

{%  %}







×

重置分数?