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.

113 lines
2.6 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>信息查询</title>
</head>
<body>
<a href="register_page">用户注册</a>
<a href="login_page">用户登录</a>
<h4>普通用户查询结果</h4>
<div align="center">
<br>
<table width="600" cellpadding="5" align="center" border="1" cellspacing="0">
<th align="center" colspan="7">省信息</th>
<tr>
<td>省/自治区/直辖市ID</td>
<td>名称</td>
<td>现有感染人数</td>
<td>累计感染人数</td>
<td>疑似感染人数</td>
<td>治愈</td>
<td>死亡</td>
</tr>
{% for item in d1 %}
<tr>
<td>{{item.provinceID}}</td>
<td>{{item.provinceName}}</td>
<td>{{item.currentCount}}</td>
<td>{{item.confirmedCount}}</td>
<td>{{item.suspectedCount}}</td>
<td>{{item.curedCount}}</td>
<td>{{item.deadCount}}</td>
</tr>
{% endfor %}
<br>
</table>
<table width="600" cellpadding="5" align="center" border="1" cellspacing="0">
<th align="center" colspan="8">城市信息</th>
<tr>
<td>市ID</td>
<td>名称</td>
<td>省ID</td>
<td>现有感染人数</td>
<td>累计感染人数</td>
<td>疑似感染人数</td>
<td>治愈</td>
<td>死亡</td>
</tr>
{% for item in d2 %}
<tr>
<td>{{item.cityID}}</td>
<td>{{item.cityName}}</td>
<td>{{item.provinceName}}</td>
<td>{{item.currentCount}}</td>
<td>{{item.confirmedCount}}</td>
<td>{{item.suspectedCount}}</td>
<td>{{item.curedCount}}</td>
<td>{{item.deadCount}}</td>
</tr>
{% endfor %}
</table>
<table width="600" cellpadding="5" align="center" border="1" cellspacing="0">
<th align="center" colspan="8">区信息</th>
<tr>
<td>区ID</td>
<td>名称</td>
<td>现有感染人数</td>
<td>累计感染人数</td>
<td>疑似感染人数</td>
<td>治愈</td>
<td>死亡</td>
</tr>
{% for item in d3 %}
<tr>
<td>{{item.districtID}}</td>
<td>{{item.districtedName}}</td>
<td>{{item.cityID}}</td>
<td>{{item.currentCount}}</td>
<td>{{item.confirmedCount}}</td>
<td>{{item.suspectedCount}}</td>
<td>{{item.curedCount}}</td>
<td>{{item.deadCount}}</td>
</tr>
{% endfor %}
</table>
</div><table width="600" cellpadding="5" align="center" border="1" cellspacing="0">
<th align="center" colspan="8">社区信息</th>
<tr>
<td>社区ID</td>
<td>社区名称</td>
<td>现有感染人数</td>
<td>累计感染人数</td>
<td>疑似感染人数</td>
<td>治愈</td>
<td>死亡</td>
</tr>
{% for item in d4 %}
<tr>
<td>{{item.cID}}</td>
<td>{{item.cName}}</td>
<td>{{item.districtID}}</td>
<td>{{item.currentCount}}</td>
<td>{{item.confirmedCount}}</td>
<td>{{item.suspectedCount}}</td>
<td>{{item.curedCount}}</td>
<td>{{item.deadCount}}</td>
</tr>
{% endfor %}
</table>
</body>
</html>