2013-09-10 21:02:29 +08:00
|
|
|
|
|
2013-11-08 11:01:28 +08:00
|
|
|
|
|
2013-11-09 09:04:23 +08:00
|
|
|
|
<div class="top-content">
|
|
|
|
|
<%= form_tag(:controller => 'users', :action => 'search', :method => :get) do %>
|
|
|
|
|
<table width="940px">
|
|
|
|
|
<tr>
|
2014-02-25 11:27:36 +08:00
|
|
|
|
<td class="info_font" style="width: 220px; color: #15bccf "><%= l(:label_software_user ) %></td>
|
2013-11-09 09:04:23 +08:00
|
|
|
|
<td class="location-list"><strong><%= l(:label_user_location) %> :</strong></td>
|
|
|
|
|
<td rowspan="2">
|
|
|
|
|
</td>
|
|
|
|
|
<td rowspan="2" >
|
|
|
|
|
<div class="project-search" style="float: right">
|
|
|
|
|
<%= text_field_tag 'name', params[:name], :size => 30 %>
|
|
|
|
|
<%= submit_tag l(:label_search), :class => "enterprise", :name => nil %>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2014-02-25 11:27:36 +08:00
|
|
|
|
<td style="padding-left: 8px"><a><%= link_to request.host()+"/users", :controller => 'users', :action => 'index' %> </a></td>
|
2013-11-09 09:04:23 +08:00
|
|
|
|
<td ><%=link_to l(:field_homepage), home_path %> > <%=link_to l(:label_software_user), :controller => 'users', :action => 'index' %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2014-05-26 16:25:53 +08:00
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2013-09-10 21:02:29 +08:00
|
|
|
|
|
|
|
|
|
<div class="autoscroll">
|
2013-11-08 11:01:28 +08:00
|
|
|
|
<% if @users.size > 0 %>
|
|
|
|
|
<% @users.each do |user| -%>
|
|
|
|
|
<% unless user.id == 1%>
|
|
|
|
|
<div class="well">
|
|
|
|
|
<%= content_tag "p", "#{format_date(user.created_on)}#{l(:label_member_since)}", :class => "float_right member_since" %>
|
|
|
|
|
<%= image_tag "/images/time_member.png", :class => "img_member_time"%>
|
|
|
|
|
<div>
|
|
|
|
|
<%= image_tag(url_to_avatar(user), :class => 'avatar') %>
|
|
|
|
|
<%= content_tag "span", link_to_user(user), :class => "nomargin avatar_name" %>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="margin-top: 20px;margin-left:66px">
|
|
|
|
|
<%= l(:label_has_fans,:count=>user.watcher_users.count)%>
|
|
|
|
|
<%= l(:label_has_watchers,:count=>User.watched_by(user.id).count) %>
|
|
|
|
|
</div>
|
2013-09-10 21:02:29 +08:00
|
|
|
|
|
|
|
|
|
<div class="user-bottom">
|
|
|
|
|
<% unless user.memberships.empty? %>
|
2013-11-08 11:01:28 +08:00
|
|
|
|
<%= l(:label_contribute_to, :project_count => "#{user.memberships.count}") %>
|
2013-09-10 21:02:29 +08:00
|
|
|
|
<% for member in user.memberships %>
|
2013-11-08 11:01:28 +08:00
|
|
|
|
<%= link_to_project(member.project) %><%= (user.memberships.last == member) ? '' : ',' %>
|
2013-09-10 21:02:29 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%= user.changesets.count == 0 ? '' : ",#{l(:label_total_commit, :total_commit => user.changesets.count)}" %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-11-08 11:01:28 +08:00
|
|
|
|
<% end -%>
|
|
|
|
|
<% end -%>
|
|
|
|
|
<% else %>
|
2013-12-19 19:54:39 +08:00
|
|
|
|
<%= render :partial => "layouts/no_content"%>
|
2013-11-08 11:01:28 +08:00
|
|
|
|
<% end %>
|
2013-09-10 21:02:29 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="pagination">
|
|
|
|
|
<ul>
|
|
|
|
|
<%= pagination_links_full @user_pages, @user_count %>
|
2014-05-26 16:25:53 +08:00
|
|
|
|
</ul>
|
2013-09-10 21:02:29 +08:00
|
|
|
|
</div>
|
|
|
|
|
<% html_title(l(:label_user_plural)) -%>
|
2014-05-26 16:25:53 +08:00
|
|
|
|
|