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.

40 lines
1.4 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>发布项目</title>
</head>
<body>
<div align="center">
<br>
<h4>发布项目</h4>
<table border="2">
<thead style="background-color: #e6e6e6">
<tr>
<th lay-data="{field:'name', width:100}">募捐项目</th>
<th lay-data="{field:'propose', width:100}">募捐目的</th>
<th lay-data="{field:'goal', width:100}">目标</th>
<th lay-data="{field:'rate', width:100}">目前进度</th>
<th lay-data="{field:'id', width:100}">募捐方案备案编号</th>
</tr>
</thead>
<br>
<tbody style="background-color: #fbfbfb">
{% for item in pro_list %}
<tr>
<td>{{item.name}}</td>
<td>{{item.propose}}</td>
<td>{{item.goal}}</td>
<td>{{item.rate}}</td>
<td>{{item.id}}</td>
<td><a href="/update?id={{item.id}}">更新项目进展</a>
<a href="/insert?cha_id={{item.c_id}}&plat_id={{item.plat_id}}">发布新项目</a>
<a href="/jk_detail?pro_id={{item.id}}">查看捐赠详情</a>
<a href="/delete?cha_id={{item.c_id}}&pro_id={{item.id}}">删除项目</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>