We had inconsistent indentation in many places. Now we're fixing them and adding a linter to our CI so we don't accidentally introduce inconsistent indentations again.
33 lines
936 B
Plaintext
33 lines
936 B
Plaintext
<h2><%= t("admin.managers.search.title") %></h2>
|
|
|
|
<%= render "admin/shared/user_search", url: search_admin_managers_path %>
|
|
|
|
<div id="managers">
|
|
<% if @users.any? %>
|
|
<h3><%= page_entries_info @users %></h3>
|
|
|
|
<table>
|
|
<thead>
|
|
<th scope="col"><%= Manager.human_attribute_name(:name) %></th>
|
|
<th scope="col"><%= Manager.human_attribute_name(:email) %></th>
|
|
<th scope="col"><%= t("admin.shared.actions") %></th>
|
|
</thead>
|
|
<tbody>
|
|
<% @users.each do |user| %>
|
|
<tr>
|
|
<td><%= user.name %></td>
|
|
<td><%= user.email %></td>
|
|
<td>
|
|
<%= render Admin::Roles::TableActionsComponent.new(user.manager || user.build_manager) %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<div class="callout alert margin">
|
|
<%= t("admin.shared.no_search_results") %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|