##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15867:9814dcf231b5
r15869:b40d66f39fa8
Show More
_users.html.erb
22 lines | 674 B | text/plain | TextLexer
Jean-Philippe Lang
Moved new group user to its own action GroupsController#new_users....
r13220 <p><%= link_to l(:label_user_new), new_group_users_path(@group), :remote => true, :class => "icon icon-add" %></p>
Jean-Philippe Lang
User groups branch merged....
r2755 <% 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| %>
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <tr id="user-<%= user.id %>">
Jean-Philippe Lang
Fixed alignments....
r12617 <td class="name"><%= link_to_user user %></td>
Toshi MARUYAMA
replace tabs to spaces at app/views/groups/_users.html.erb...
r7157 <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 %>