博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Django 模板
阅读量:6199 次
发布时间:2019-06-21

本文共 615 字,大约阅读时间需要 2 分钟。

<html>

<head><title>Ordering notice</title></head>

<body>

<h1>Ordering notice</h1>

<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>
{% else %}
<p>You didn't order a warranty, so you're on your own when
the products inevitably stop working.</p>
{% endif %}

<p>Sincerely,<br />{

{ company }}</p>

</body>

</html>

转载地址:http://jpnca.baihongyu.com/

你可能感兴趣的文章
JS判断用户终端,跳转到不同的页面.
查看>>
Java多态
查看>>
设置Grid某列的Title样式和列内数据样式
查看>>
C++引用
查看>>
Java中对象的上转型对象
查看>>
Android Fragment 你应该知道的一切
查看>>
镜面翻转
查看>>
java编程中的断言工具类(org.springframework.util.Assert)
查看>>
26.OGNL与ValueStack(VS)-N语法top语法
查看>>
1154: 零起点学算法61——矩阵转置
查看>>
python-生成器
查看>>
jzoj6005. 【PKUWC2019模拟2019.1.17】数学 (生成函数+FFT+抽代+高精)
查看>>
【bzoj4939】【YNOI2016】掉进兔子洞(莫队)
查看>>
P85练习3
查看>>
mysql-front5.1的注册码
查看>>
使用spring框架时,使用xml还是注解
查看>>
day22 Pythonpython 本文xml模块
查看>>
中文输入法安装
查看>>
iphone-common-codes-ccteam源代码 CCDylib.h
查看>>
pod install 报错
查看>>