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.
33 lines
893 B
33 lines
893 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<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>
|
|
<th>捐赠数量</th>
|
|
<th>捐赠时间</th>
|
|
|
|
</tr>
|
|
{% for donation in donation_list %}
|
|
<tr>
|
|
<td>{{ donation.dname }}</td>
|
|
<td>{{ donation.mname }}</td>
|
|
<td>{{ donation.donnumber }}</td>
|
|
<td>{{ donation.dontime }}</td>
|
|
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</center>
|
|
</body>
|
|
</html> |