socialforge/app/views/bids/_project_list.html.erb

36 lines
817 B
Plaintext

<% @bidding_project.each do |b_project|%>
<li>
<table width="90%"border="1">
<tr>
<td>
<table width="100%" border="1">
<tr>
<td width="10%"><img src="/images/requirements/req.jpg"></td>
<td width="50%">
<table width="100%">
<tr>
<td><%= link_to(b_project.project.name, project_path(b_project.project)) %></td>
</tr>
<tr>
<td><%= b_project.project.description %></td>
</tr>
</table></td>
<td width="40%">
<table width="100%">
<tr>
<td>应标人:<%= link_to(b_project.user.name, user_path(b_project.user)) %></td>
</tr>
<tr>
<td>应标宣言:<%= b_project.description %></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
</table>
</li>
<% end %>