Django使用管理模板

时间:2017-03-24 13:05:13

标签: python-3.x django-templates django-admin

我创建了以下简单模板:

<!DOCTYPE html>
<html lang="en">
<head> .... </head>
<body>
<h1>Harvester: {{ harvester_name }} </h1>
 <textarea rows="10" cols="50">
 {{ log_text }}
 </textarea>
 </body>
 </html>

在路径myProject/myApp/templates/myApp中创建 现在我想使用管理模板作为我的模板。 这样我的标题类似于change_form中使用的标题。 如图所示。 Admin Heade

我该怎么做?

提前致谢

1 个答案:

答案 0 :(得分:0)

在模板中将其添加到顶部。 Documentation

{% extends "admin/change_form.html" %}

{% block content %}
    Your stuff here
{% endblock %}