132 lines
5.0 KiB
Plaintext
132 lines
5.0 KiB
Plaintext
<% if User.current.admin? %>
|
||
<div class="contextual">
|
||
<%= link_to l(:label_user_new), new_user_path, :class => 'icon icon-add' %>
|
||
</div>
|
||
|
||
<h3><%= l(:label_user_plural)%></h3>
|
||
|
||
<%= form_tag(:controller => 'users', :action => 'search', :method => :get) do %>
|
||
<fieldset>
|
||
<legend>
|
||
<%= l(:label_filter_plural) %>
|
||
</legend>
|
||
<label for='status'><%= l(:field_status) %>:</label>
|
||
<%= select_tag 'status', users_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
|
||
|
||
<% if @groups.present? %>
|
||
<label for='group_id'><%= l(:label_group) %>:</label>
|
||
<%= select_tag 'group_id', content_tag('option') + options_from_collection_for_select(@groups, :id, :name, params[:group_id].to_i), :onchange => "this.form.submit(); return false;" %>
|
||
<% end %>
|
||
|
||
<label for='name'><%= l(:label_user) %>:</label>
|
||
<%= text_field_tag 'name', params[:name], :size => 30 %>
|
||
<%= submit_tag l(:label_search), :class => "small", :name => nil %>
|
||
</fieldset>
|
||
<% end %>
|
||
|
||
|
||
<div class="autoscroll">
|
||
<table class="list">
|
||
<thead>
|
||
<tr>
|
||
<%= sort_header_tag('login', :caption => l(:field_login)) %>
|
||
<%= sort_header_tag('firstname', :caption => l(:field_firstname)) %>
|
||
<%= sort_header_tag('lastname', :caption => l(:field_lastname)) %>
|
||
<%= sort_header_tag('mail', :caption => l(:field_mail)) %>
|
||
|
||
<%= sort_header_tag('admin', :caption => l(:field_admin), :default_order => 'desc') %>
|
||
<%= sort_header_tag('created_on', :caption => l(:field_created_on), :default_order => 'desc') %>
|
||
<%= sort_header_tag('last_login_on', :caption => l(:field_last_login_on), :default_order => 'desc') %>
|
||
<th></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<% for user in @users -%>
|
||
<tr class="<%= user.css_classes %> <%= cycle("odd", "even") %>">
|
||
<td class="username"><%= avatar(user, :size => "14") %><%= link_to h(user.login), edit_user_path(user) %></td>
|
||
<td class="firstname"><%= h(user.firstname) %></td>
|
||
<td class="lastname"><%= h(user.lastname) %></td>
|
||
<td class="email"><%= mail_to(h(user.mail)) %></td>
|
||
<td align="center"><%= checked_image user.admin? %></td>
|
||
<td class="created_on" align="center"><%= format_time(user.created_on) %></td>
|
||
<td class="last_login_on" align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
|
||
<td class="buttons"> <%= change_status_link(user) %>
|
||
<%= delete_link user_path(user, :back_url => users_path(params)) unless User.current == user %> </td>
|
||
</tr>
|
||
<% end -%>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
<div class="pagination">
|
||
<ul>
|
||
<%= pagination_links_full @user_pages, @user_count %>
|
||
<ul>
|
||
</div>
|
||
|
||
<% html_title(l(:label_user_plural)) -%>
|
||
|
||
<% else %>
|
||
|
||
<div class="top-content">
|
||
<%= form_tag(:controller => 'users', :action => 'search', :method => :get) do %>
|
||
<table width="940px">
|
||
<tr>
|
||
<td class="info_font" style="width: 220px; color: #15bccf "><%= l(:label_software_user ) %></td>
|
||
<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>
|
||
<td style="padding-left: 8px"><a><%= link_to request.host()+"/users", :controller => 'users', :action => 'index' %> </a></td>
|
||
<td ><%=link_to l(:field_homepage), home_path %> > <%=link_to l(:label_software_user), :controller => 'users', :action => 'index' %></td>
|
||
</tr>
|
||
</table>
|
||
<% end %>
|
||
</div>
|
||
|
||
<div class="autoscroll">
|
||
<% 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>
|
||
|
||
<div class="user-bottom">
|
||
<% unless user.memberships.empty? %>
|
||
<%= l(:label_contribute_to, :project_count => "#{user.memberships.count}") %>
|
||
<% for member in user.memberships %>
|
||
<%= link_to_project(member.project) %><%= (user.memberships.last == member) ? '' : ',' %>
|
||
<% end %>
|
||
<% end %>
|
||
<%= user.changesets.count == 0 ? '' : ",#{l(:label_total_commit, :total_commit => user.changesets.count)}" %>
|
||
</div>
|
||
</div>
|
||
<% end -%>
|
||
<% end -%>
|
||
<% else %>
|
||
<%= render :partial => "layouts/no_content"%>
|
||
<% end %>
|
||
</div>
|
||
<div class="pagination">
|
||
<ul>
|
||
<%= pagination_links_full @user_pages, @user_count %>
|
||
<ul>
|
||
</div>
|
||
<% html_title(l(:label_user_plural)) -%>
|
||
<% end -%>
|