【发布时间】:2011-05-16 11:04:14
【问题描述】:
您好,我似乎在使用基本模板时遇到了问题。我的基本 html 称为 help_content.html。
<html>
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
<a href="help_new_client.html">New Client</a>
<title>User Manual</title>
<style></style></head>
<body style="padding:10px;">
{% block content %}{% endblock %}
</body>
</html>
这是我的名为 help_new_client.html 的子模板
{% extends "help_content.html" %}
{% block content %}
<h3 class="western">New Client</h3>
<p><b>Add client</b></p>
<p>If you are not already on the All clients screen then click “VIEW
CLIENTS” on the main menu.</p>
<p>Click on the Add client button. A Client form is displayed. Fill
the form and click save.</p>
<p>Action: VIEW CLIENTS → Add client → save</p>
<p><b>Edit client</b></p>
<p>To edit a client simply click on the client in the All clients
list. Edit the clients information and save.</p>
<p>Action: VIEW CLIENT → click on client → click on Edit client
information → save
</p>
{% endblock %}
编辑:观点
@login_required
def help_index(request):
return render_to_response('help_content.html', context_instance=RequestContext(request))
@login_required
def help_new_client(request):
return render_to_response('help_new_client.html', context_instance=RequestContext(request))
我不确定我做错了什么。在 help_content.html 中,我看到了 {% block content %}{% endblock %},在 help_new_client.html 中,我看到了 {% extends "help_content.html" %} {% block content %} {% endblock %}。我不确定为什么我会收到这些模板标签而不是我的内容。
【问题讨论】:
标签: python html django templates