我创建了以下简单模板:
<!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中使用的标题。
如图所示。
我该怎么做?
提前致谢
答案 0 :(得分:0)
在模板中将其添加到顶部。 Documentation
{% extends "admin/change_form.html" %}
{% block content %}
Your stuff here
{% endblock %}