2013-10-19 09:35:14 +08:00
|
|
|
|
<div class="inf_user_image">
|
2013-12-19 19:54:39 +08:00
|
|
|
|
<% for user in @bid.watcher_users %>
|
2013-10-19 09:35:14 +08:00
|
|
|
|
<ul class="list_watch"><li>
|
|
|
|
|
<table width="660px" border="0" align="center">
|
|
|
|
|
<tr>
|
2013-11-01 15:48:23 +08:00
|
|
|
|
<td colspan="2" valign="top" width="50" ><%= image_tag(url_to_avatar(user), :class => "avatar") %></td>
|
2013-10-19 09:35:14 +08:00
|
|
|
|
<td><table width="580px" border="0">
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" valign="top"><strong><%= content_tag "div", link_to_user(user), :class => "project_avatar_name" %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" width="580px" ><p class="font_description">
|
|
|
|
|
<% unless user.memberships.empty? %>
|
|
|
|
|
<%= l(:label_x_contribute_to, :count => user.memberships.count) %>
|
|
|
|
|
<% for member in user.memberships %>
|
|
|
|
|
<%= link_to_project(member.project) %><%= (user.memberships.last == member) ? '' : ',' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<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>
|