2014-04-03 22:38:18 +08:00
|
|
|
|
<!--add by bai-->
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<h3>
|
|
|
|
|
<%=link_to l(:label_x_join_in_contest, :count => @contest.join_in_contests.count)+"("+@contest.join_in_contests(@user.id).count.to_s+")",
|
|
|
|
|
show_participator_contest_path
|
|
|
|
|
%>
|
|
|
|
|
</h3>
|
2014-04-03 22:38:18 +08:00
|
|
|
|
<div class="inf_user_image">
|
|
|
|
|
<% for temp in @contest.join_in_contests %>
|
|
|
|
|
<% user = temp.user %>
|
|
|
|
|
<ul class="list_watch">
|
|
|
|
|
<li>
|
|
|
|
|
<table width="660px" border="0" align="center">
|
|
|
|
|
<tr>
|
|
|
|
|
<!-- modified by bai 显示人名全称-->
|
|
|
|
|
<td colspan="2" valign="top" width="50" >
|
2014-09-17 14:58:13 +08:00
|
|
|
|
<%= link_to image_tag(url_to_avatar(user), :class => "avatar"),
|
|
|
|
|
user_path(user),
|
|
|
|
|
:title => "#{user.show_name}"
|
|
|
|
|
%>
|
2014-04-03 22:38:18 +08:00
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<table width="580px" border="0">
|
|
|
|
|
<tr>
|
2014-09-17 14:58:13 +08:00
|
|
|
|
<td colspan="2" valign="top">
|
|
|
|
|
<%= content_tag "div",
|
|
|
|
|
link_to(user.show_name, user_path(user)),
|
|
|
|
|
:class => "project_avatar_name" ,
|
|
|
|
|
:title => "#{user.show_name}"
|
|
|
|
|
%>
|
2014-04-03 22:38:18 +08:00
|
|
|
|
<!-- added by bai 增加了学员的学号 -->
|
|
|
|
|
<% if (im_watching_student_id? @contest) && user.user_extensions.identity.to_i.eql?(1) %>
|
|
|
|
|
<%= l(:label_bidding_user_studentcode) %> :<%= user.user_extensions.student_id%>
|
|
|
|
|
<% end %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<!-- modified by bai 区分课程与项目-->
|
|
|
|
|
<td colspan="2" width="580px" >
|
|
|
|
|
<p class="font_description">
|
|
|
|
|
<% unless user.memberships.empty? %>
|
|
|
|
|
<% cond = Project.visible_condition(User.current) + "AND projects.project_type <> 1" %>
|
|
|
|
|
<% memberships = user.memberships.all(:conditions => cond) %>
|
|
|
|
|
<%= l(:label_x_contribute_to, :count => memberships.count) %>
|
|
|
|
|
<%
|
|
|
|
|
links = Array.new
|
|
|
|
|
memberships.collect{|member| links << link_to_project(member.project) }
|
|
|
|
|
%>
|
|
|
|
|
|
|
|
|
|
<%= raw links.join(" , ") %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<!-- added by bai -->
|
|
|
|
|
<!--
|
|
|
|
|
<p class="font_description">
|
|
|
|
|
<% unless user.memberships.empty? %>
|
|
|
|
|
<% cond = Project.visible_condition(User.current) + "AND projects.project_type = 1" %>
|
|
|
|
|
<% memberships = user.memberships.all(:conditions => cond) %>
|
|
|
|
|
<%= l(:label_x_course_contribute_to, :count => memberships.count) %>
|
|
|
|
|
<% for member in memberships %>
|
|
|
|
|
<%= link_to_project(member.project) %><%= (user.memberships.last == member) ? '' : ',' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p>
|
|
|
|
|
-->
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- end -->
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td width="200" align="right" class="font_lighter">
|
|
|
|
|
<%= l(:label_user_joinin) %><%= format_date(user.created_on) %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|