2013-08-04 10:59:25 +08:00
|
|
|
<!-- fq -->
|
2013-08-04 10:11:38 +08:00
|
|
|
<table width="500px" border="0" style="padding-left: 10px; margin-bottom: 15px; padding-top: 10px;">
|
|
|
|
<td width="100px" class="font_lighter" style="font-size: 16px;">需求列表</td>
|
|
|
|
<td>
|
|
|
|
<div class='icon icon-add' >
|
|
|
|
<%= toggle_link l(:button_bidding), 'put-bid-form', {:focus => 'project_id'} %>
|
|
|
|
</div></td>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<% bids.each do |bid|%>
|
|
|
|
|
|
|
|
<table width="80%" border="0" style="padding-left: 10px">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" valign="top" width="50" ><%= link_to image_tag(url_to_avatar(bid.author), :class => 'avatar'), :class => "avatar" %></td>
|
|
|
|
<td>
|
|
|
|
<table width="100%" border="0">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" valign="top"><strong><%= link_to(bid.author, user_path(bid.author), :class => 'bid_user') %>:<%= link_to(bid.name, respond_path(bid), :class => 'bid_path') %></strong></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="500">
|
|
|
|
<table border="0">
|
|
|
|
<tr>
|
|
|
|
<td style="color: rgb(255, 0, 0);"><strong>悬赏:¥<%= bid.budget%></strong></td>
|
|
|
|
<td class="font_lighter">(<%= link_to bid.biding_projects.count, project_for_bid_path(bid)%>)应标</td>
|
|
|
|
<td class="font_lighter">(<%= link_to bid.commit, respond_path(bid)%>)反馈</td>
|
|
|
|
<td class="font_lighter">(<%= link_to bid.watcher_users.count, respond_path(bid)%>)关注</td>
|
|
|
|
</tr>
|
|
|
|
</table></td>
|
|
|
|
<td width="200" align="right" class="a"><a class="font_lighter"> <%= format_time bid.created_at %></a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="bid-description" style="border-left: 1px solid rgb(225, 225, 225); border-bottom: 1px solid rgb(225, 225, 225); padding-left: 20px; padding-bottom: 10px; margin-bottom: 20px;">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td> <%= bid.description%> </td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div></td>
|
|
|
|
</tr>
|
|
|
|
</table></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<% end %>
|
|
|
|
<div class="pagination">
|
|
|
|
<ul>
|
|
|
|
<%= pagination_links_full bid_pages %>
|
|
|
|
<ul>
|
|
|
|
</div>
|