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.

30 lines
552 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>城市信息</title>
</head>
<body>
<table border="1" cellpadding="15">
<caption>城市信息</caption>
<tr>
<th>{{ dic.filter.0 }}</th>
<th>{{ dic.filter.1 }}</th>
<th>{{ dic.filter.2 }}</th>
<th>{{ dic.filter.3 }}</th>
</tr>
{% for row in dic.info %}
<tr>
<td>{{ row.province }}</td>
<td>{{ row.cityname }}</td>
<td>{{ row.usernumber }}</td>
<td>{{ "添加 删除" }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>