mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 09:21:12 +00:00
* Introduces IconsHelper with methods to render SVG icon from a sprite file. * Adds SVG sprite file with icons mainly from Font Awesome, but also from Material Design Icons and Fluent UI System Icons (based on the work made by Takashi Kato (@tohosaku)). * Replaces specific icons with new SVG icons. * Temporarily keep all old CSS icon definitions for backard compatibility. git-svn-id: https://svn.redmine.org/redmine/trunk@22988 e93f8b46-1217-0410-a6f0-8f06a7374b81
23 lines
698 B
Plaintext
23 lines
698 B
Plaintext
<p><%= link_to icon_with_label('add', l(:label_user_new)), new_group_users_path(@group), :remote => true, :class => "icon icon-add" %></p>
|
|
|
|
<% if @group.users.any? %>
|
|
<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 %>">
|
|
<td class="name"><%= link_to_user user %></td>
|
|
<td class="buttons">
|
|
<%= delete_link group_user_path(@group, :user_id => user), :remote => true %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
|
<% end %>
|