##// END OF EJS Templates
Prepend page title to anchor in single page wiki HTML export to make links more unique....
Prepend page title to anchor in single page wiki HTML export to make links more unique. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7562 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7220:5e5ab1eac404
r7442:8bb90f87fb73
Show More
_users.html.erb
49 lines | 1.7 KiB | text/plain | TextLexer
Jean-Philippe Lang
User groups branch merged....
r2755 <div class="splitcontentleft">
<% if @group.users.any? %>
Toshi MARUYAMA
replace tabs to spaces at app/views/groups/_users.html.erb...
r7157 <table class="list users">
<thead><tr>
<th><%= l(:label_user) %></th>
<th style="width:15%"></th>
</tr></thead>
<tbody>
<% @group.users.sort.each do |user| %>
<tr id="user-<%= user.id %>" class="<%= cycle 'odd', 'even' %>">
<td class="user"><%= link_to_user user %></td>
<td class="buttons">
<%= link_to_remote l(:button_delete), { :url => { :controller => 'groups', :action => 'remove_user', :id => @group, :user_id => user },
:method => :post },
:class => 'icon icon-del' %>
</td>
</tr>
<% end %>
</tbody>
</table>
Jean-Philippe Lang
User groups branch merged....
r2755 <% else %>
Toshi MARUYAMA
replace tabs to spaces at app/views/groups/_users.html.erb...
r7157 <p class="nodata"><%= l(:label_no_data) %></p>
Jean-Philippe Lang
User groups branch merged....
r2755 <% end %>
</div>
<div class="splitcontentright">
Jean-Philippe Lang
Fixed: list of users for adding to a group may be empty if 100 first users have been added (#8029)....
r5164 <% users = User.active.not_in_group(@group).all(:limit => 100) %>
Jean-Philippe Lang
User groups branch merged....
r2755 <% if users.any? %>
<% remote_form_for(:group, @group, :url => {:controller => 'groups', :action => 'add_users', :id => @group}, :method => :post) do |f| %>
<fieldset><legend><%=l(:label_user_new)%></legend>
Toshi MARUYAMA
remove trailing white-spaces app/views/groups/_users.html.erb...
r7152
Toshi MARUYAMA
replace tabs to spaces at app/views/groups/_users.html.erb...
r7157 <p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p>
<%= observe_field(:user_search,
Jean-Philippe Lang
User groups branch merged....
r2755 :frequency => 0.5,
:update => :users,
:url => { :controller => 'groups', :action => 'autocomplete_for_user', :id => @group },
:with => 'q')
%>
Toshi MARUYAMA
remove trailing white-spaces from app/views/groups/_users.html.erb...
r7220
Toshi MARUYAMA
replace tabs to spaces at app/views/groups/_users.html.erb...
r7157 <div id="users">
<%= principals_check_box_tags 'user_ids[]', users %>
</div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/groups/_users.html.erb...
r7220
Jean-Philippe Lang
User groups branch merged....
r2755 <p><%= submit_tag l(:button_add) %></p>
Toshi MARUYAMA
replace tabs to spaces at app/views/groups/_users.html.erb...
r7157 </fieldset>
Jean-Philippe Lang
User groups branch merged....
r2755 <% end %>
<% end %>
</div>