模板
<html>
<head><title>Ordering notice</title></head>
<body>
<p>Dear {
{ person_name }},</p>
<p>Thanks for placing an order from {
{ company }}. It's scheduled to
ship on {
{ ship_date|date:"F j, Y" }}.</p>
<p>Here are the items you've ordered:</p>
<ul>
{% for item in item_list %}
<li>{
{ item }}</li>
{% endfor %}
</ul>
{% if ordered_warranty %}
<p>Your warranty information will be included in the packaging.</p>
{% endif %}
<p>Sincerely,<br />{
{ company }}</p>
</body>
</html>
在Python代碼中使用模板系統,請按照下面的步驟:
1,用模板代碼創建一個Template對象
Django也提供指定模板文件路徑的方式創建Template對象
2,使用一些給定變量context調用Template對象的render()方法
這將返回一個完全渲染的模板,它是一個string,其中所有的變量和塊標簽都會根據context得到值