64 lines
3.1 KiB
Plaintext
64 lines
3.1 KiB
Plaintext
<!-- fq -->
|
|
|
|
|
|
<% if @bid.size > 0%>
|
|
<% for bid in @bid %>
|
|
<table width="90%" border="0" align="center" style="border-bottom: 1px dashed rgb(204, 204, 204); margin-bottom: 10px; margin-top: 30px;font-size:14px;">
|
|
<tr>
|
|
<td colspan="2" valign="top" width="50" ><%= image_tag(url_to_avatar(bid.author), :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>
|
|
<% if bid.reward_type.nil? or bid.reward_type == 1%>
|
|
<strong><%= l(:label_bids_reward_method) %><span style="color: #ed8924;font-family: 14px; font-family: 微软雅黑"><%= l(:label_call_bonus) %> <%= l(:label_RMB_sign) %><%= bid.budget%></span></strong>
|
|
<% elsif bid.reward_type == 2%>
|
|
<strong><%= l(:label_bids_reward_method) %><span style="color: #15bccf;font-family: 14px; font-family: 微软雅黑"><%= bid.budget%></span></strong>
|
|
<% else %>
|
|
<% end %>
|
|
|
|
<!-- <td style="color: rgb(255, 0, 0);"><strong><%= l(:label_price) %><%= l(:label_RMB_sign) %><%= bid.budget%></strong></td> -->
|
|
</td>
|
|
</tr>
|
|
<tr><td>
|
|
<% if bid.reward_type == 3 %>
|
|
<span class="font_lighter"><%= l(:label_x_homework_project, :count => bid.biding_projects.count) %>(<strong><%=link_to bid.biding_projects.count, project_for_bid_path(bid) %></strong>)</span>
|
|
<span class="font_lighter"><%= l(:label_x_responses, :count => bid.commit) %>(<strong><%=link_to bid.commit, respond_path(bid) %></strong>)</span>
|
|
<% else %>
|
|
<span class="font_lighter"><%= l(:label_x_biding_project, :count => bid.biding_projects.count) %>(<strong><%=link_to bid.biding_projects.count, project_for_bid_path(bid) %></strong>)</span>
|
|
<span class="font_lighter"><%= l(:label_x_bids_responses, :count => bid.commit) %>(<strong><%=link_to bid.commit, respond_path(bid) %></strong>)</span>
|
|
<% end %>
|
|
<span class="font_lighter"><%= l(:label_x_followers, :count => bid.watcher_users.count) %>(<strong><%=link_to bid.watcher_users.count, respond_path(bid) %></strong>)</span>
|
|
</td>
|
|
</tr>
|
|
</table></td>
|
|
<td width="220" align="right" class="a"><span class="font_lighter"> <%= format_time bid.created_on %></span></td><!-- modified by ming -->
|
|
</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 %>
|
|
<!-- fq -->
|
|
<div class="pagination" style="float:left;">
|
|
<ul>
|
|
<%= pagination_links_full @bid_pages %>
|
|
<ul>
|
|
</div>
|
|
<% else %>
|
|
<p class="font_description"><%= l(:label_follow_no_requirement) %></p>
|
|
<% end %> |