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.

25 lines
651 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>
</tr>
{% for item in wlgs_list %}
<tr>
<td>{{item.wlgs_name}}</td>
<td>{{item.wlgs_phone}}</td>
</tr>
{% endfor %}
</table>
<div>
</body>
</html>