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.

36 lines
1.1 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>新型冠状病毒肺炎疫情实时更新</title>
</head>
<body>
<h1 align="center" colspan="10">疫情实时大数据报告</h1>
<div align="center">
<br>
<a href="/insert2_page">添加病例</a>
<br>
<br>
<table id = 'tabledemo'lay-filter="test">
<table width="600" cellpadding="5" align="center" border="1" cellspacing="0">
<th align="center" colspan="9">病人病症统计</th>
<tr>
<th lay-data="{field:'patient_id', width:100}">编号</th>
<th lay-data="{field:'update_time'}">时间</th>
<th lay-data="{field:'situation'}">症状</th>
<th lay-data="{fixed: 'right', width: 160, align:'center', toolbar: '#barDemo'}"></th>
</tr>
{% for item in R_E %}
<tr>
<td>{{item.patient_id}}</td>
<td>{{item.update_time}}</td>
<td>{{item.situation}}</td>
<td><a href='/alter2?patient_id={{item.patient_id}}&update_time={{ item.update_time }}&situation={{ item.situation }}'>编辑</a>
<a href="/delete2?patient_id={{ item.patient_id }}">删除</a> </td>
</tr>
{% endfor %}
</table>
</body>
</html>