skill-assessment-app/app/views/admin/user/index.html.erb
2017-06-05 11:30:34 -05:00

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? %>