66 lines
4.2 KiB
Plaintext
66 lines
4.2 KiB
Plaintext
<!-- fq -->
|
||
<% bids.each do |bid|%>
|
||
|
||
<table width="95%" border="0" style="padding-left: 10px; padding-top: 10px;">
|
||
<tr>
|
||
<td colspan="2" valign="top" width="50" ><%= link_to(image_tag(url_to_avatar(bid.author), :class => 'avatar'), user_path(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 %> <!-- <strong><%= l(:label_bids_reward_method) %><span style="color: #00aa83;font-family: 14px; font-family: 微软雅黑"><%= l(:label_bids_credit) %> <%= bid.budget%> <%= l(:label_bids_credit_number) %></span></strong> --> <% end %> <!-- <td style="color: rgb(255, 0, 0);"><strong><%= l(:label_price) %><%= l(:label_RMB_sign) %><%= bid.budget%></strong></td> --></td>
|
||
</tr>
|
||
<% if bid.reward_type == 3 %>
|
||
<tr>
|
||
<td><span class="font_lighter"><% if bid.homework_type == 1%>
|
||
<%= l(:label_x_homework_project, :count => bid.homeworks.count) %>(<strong><span style="font-size: 17px"><%= link_to bid.homeworks.count, project_for_bid_path(bid.id) %></span></strong>)
|
||
<% else %>
|
||
<%= l(:label_x_homework_project, :count => bid.biding_projects.count) %>(<strong><span style="font-size: 17px"><%= link_to bid.biding_projects.count, project_for_bid_path(bid.id) %></span></strong>)</span>
|
||
<% end %>
|
||
<span class="font_lighter"><%= l(:label_x_responses, :count => bid.commit) %>(<strong><span style="font-size: 17px"><%= link_to bid.commit, respond_path(bid) %></span></strong>)</span>
|
||
<span class="font_lighter"> <%= l(:label_x_followers, :count => bid.watcher_users.count) %>(<strong><span style="font-size: 17px"><%= link_to bid.watcher_users.count, respond_path(bid) %></span></strong>)</span>
|
||
</td>
|
||
</tr>
|
||
<% else %>
|
||
<tr>
|
||
<td><span class="font_lighter"><%= l(:label_x_biding_project, :count => bid.biding_projects.count) %>(<strong><span style="font-size: 17px"><%= link_to bid.biding_projects.count, project_for_bid_path(bid) %></span></strong>) </span>
|
||
<span class="font_lighter"><%= l(:label_x_bids_responses, :count => bid.commit) %>(<strong><span style="font-size: 17px"><%= link_to bid.commit, respond_path(bid) %></span></strong>)</span>
|
||
<span class="font_lighter"><%= l(:label_x_followers, :count => bid.watcher_users.count) %>(<strong><span style="font-size: 17px"><%= link_to bid.watcher_users.count, respond_path(bid) %></span></strong>)</span>
|
||
</td>
|
||
</tr>
|
||
<% unless bid.courses.empty? %>
|
||
<% teacher = Course.find_by_extra(bid.courses.first.identifier).teacher %>
|
||
<tr>
|
||
<td><span class="font_lighter"><%= l(:label_bid_show_course_name) %>:<%= link_to bid.courses.first.name, project_path(bid.courses.first)%> <%= l(:label_bid_show_teacher_name) %>:<%= link_to teacher.lastname+teacher.firstname, user_path(teacher) %></span></td>
|
||
</tr>
|
||
<% end %>
|
||
<% end %>
|
||
</table></td>
|
||
<td width="200" align="right" class="a"><span class="font_lighter"> <%= format_time bid.created_on %></span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<div class="bid-description" style="border-left: 1px solid #d9d8d8; border-bottom: 1px solid #d9d8d8; padding-left: 20px; padding-bottom: 10px; margin-bottom: 20px;">
|
||
<table width="100%">
|
||
<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>
|
||
|