Files
Redmine/app/views/imports/_users_saved_objects.html.erb
2025-11-27 00:49:19 +00:00

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>