Templates
<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>
stay Python Use template system in code , Please follow the steps below :
1, Create a with template code Template object
Django You can also specify the path of the template file Template object
2, Use some given variables context call Template Object's render() Method
This will return a fully rendered template , It's a string, All of these variables and block labels will be based on context Get the value
1. use python Ma
Hey, everyone, good duck ~ Im