##// END OF EJS Templates
not add empty header/footer to notification emails (#13482)...
not add empty header/footer to notification emails (#13482) Contributed by Max Horn. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11721 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10970:1257f1960ff6
r11491:19f70c95d1ae
Show More
_users.html.erb
39 lines | 1.2 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">
Jean-Philippe Lang
Removes calls to link_to_remote....
r9847 <%= delete_link group_user_path(@group, :user_id => user), :remote => true %>
Toshi MARUYAMA
replace tabs to spaces at app/views/groups/_users.html.erb...
r7157 </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
Merged rails-3.2 branch....
r9346 <%= form_for(@group, :remote => true, :url => group_users_path(@group),
:html => {:method => :post}) do |f| %>
Jean-Philippe Lang
User groups branch merged....
r2755 <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>
Jean-Philippe Lang
Adds pagination to users list when adding project or group members (#9549)....
r10970 <%= javascript_tag "observeSearchfield('user_search', null, '#{ escape_javascript autocomplete_for_user_group_path(@group) }')" %>
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">
Jean-Philippe Lang
Adds pagination to users list when adding project or group members (#9549)....
r10970 <%= render_principals_for_new_group_users(@group) %>
Toshi MARUYAMA
replace tabs to spaces at app/views/groups/_users.html.erb...
r7157 </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 %>
</div>