8 lines
221 B
Plaintext
8 lines
221 B
Plaintext
<% content_for :section_title, "Users" %>
|
|
|
|
<h1>Users</h1>
|
|
|
|
<%= render partial: 'admin/user/table_list', locals: { users: @users } %>
|
|
|
|
<%= link_to('New User', admin_new_user_path, { class: "" }) if policy(User).create? %>
|