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.

34 lines
960 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>快递单</title>
</head>
<body>
<div align="center">
<br>
<table width="700" cellpadding="5" align="center" border="2" cellspacing="0">
<th align="center" colspan="10">快递单</th>
<tr>
<td>快递单编号</td>
<td>仓库编号</td>
<td>医院名称</td>
<td>快递员单号</td>
<td>现在位置</td>
<td>预计到达时间</td>
</tr>
{% for item in kdd_list %}
<tr>
<td>{{item.kdbh}}</td>
<td>{{item.ckbh}}</td>
<td>{{item.yymc}}</td>
<td>{{item.kd_id}}</td>
<td>{{item.position}}</td>
<td>{{item.arrive_time}}</td>
</tr>
{% endfor %}
</table>
<div>
</body>
</html>