mirror of
https://github.com/redmine/redmine.git
synced 2026-01-20 22:43:10 +01:00
Patch by Mizuki ISHIKAWA (user:ishikawa999). git-svn-id: https://svn.redmine.org/redmine/trunk@24183 e93f8b46-1217-0410-a6f0-8f06a7374b81
25 lines
713 B
Plaintext
25 lines
713 B
Plaintext
<table id="saved-items" class="list">
|
|
<thead>
|
|
<tr>
|
|
<th><%= t(:field_login) %></th>
|
|
<th><%= t(:field_firstname) %></th>
|
|
<th><%= t(:field_lastname) %></th>
|
|
<th><%= t(:field_mail) %></th>
|
|
<th><%= t(:field_admin) %></th>
|
|
<th><%= t(:field_status) %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% saved_objects.each do |user| %>
|
|
<tr>
|
|
<td><%= avatar(user, :size => "13") %> <%= link_to user.login, edit_user_path(user) %></td>
|
|
<td><%= user.firstname %></td>
|
|
<td><%= user.lastname %></td>
|
|
<td><%= mail_to(user.mail) %></td>
|
|
<td><%= checked_image user.admin? %></td>
|
|
<td><%= l(("status_#{User::LABEL_BY_STATUS[user.status]}")) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|