Files
Redmine/app/views/imports/_users_saved_objects.html.erb
Go MAEDA 1be3a7da21 Avatar layout breaks for initials icon in user import completion page (#43523).
Patch by Mizuki ISHIKAWA (user:ishikawa999).


git-svn-id: https://svn.redmine.org/redmine/trunk@24183 e93f8b46-1217-0410-a6f0-8f06a7374b81
2025-11-26 06:30:02 +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>