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
659 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<center>
<img src="/static/2.jpg" width="1400" height="300"/>
</center>
<body>
<center>
<center><h1>仓库情况</h1></center>
<table width="1200px" border="1" cellspacing="0" cellpadding="0">
<tr>
<th>编号</th>
<th>名称</th>
</tr>
{% for item in w_list %}
<tr>
<td>{{ item.wid }}</td>
<td>{{ item.wname }}</td>
</tr>
{% endfor %}
</table>
</center>
</body>
</html>