Note the CSS could probably be improved to avoid duplication with other button style definitions. However, that's fine because we're going to change the style of the links soon. For the same reason, I haven't bothered to style every single link the way it was until now.
33 lines
908 B
Plaintext
33 lines
908 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"><%= t("admin.managers.index.name") %></th>
|
|
<th scope="col"><%= t("admin.managers.index.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>
|