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.

27 lines
736 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>
</tr>
{% for item in ckcc_list %}
<tr>
<td><a href="/ck_page"></a>{{item.ckbh}}</td>
<td>{{item.spname}}</td>
<td>{{item.synum}}</td>
</tr>
{% endfor %}
</table>
<div>
</body>
</html>