You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
782 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>捐赠记录</title>
</head>
<body>
<div align="center">
<br>
<table width="600" cellpadding="5" align="center" border="1" cellspacing="0">
<th align="center" colspan="4">捐赠记录</th>
<tr>
<td>快递单编号</td>
<td>姓名</td>
<td>商品名称</td>
<td>数量</td>
</tr>
{% for item in jzjl_list %}
<tr>
<td>{{item.hdbh}}</td>
<td>{{item.user_id}}</td>
<td>{{item.spname}}</td>
<td>{{item.num}}</td>
</tr>
{% endfor %}
</table>
<div>
</body>
</html>