skill-assessment-app/app/views/admin/user/index.html.erb

8 lines
221 B
Plaintext
Raw Normal View History

2017-03-20 10:57:50 -05:00
<% content_for :section_title, "Users" %>
2016-08-18 18:22:57 -05:00
2016-08-24 12:17:00 -05:00
<h1>Users</h1>
2017-03-20 10:57:50 -05:00
2016-08-24 12:17:00 -05:00
<%= render partial: 'admin/user/table_list', locals: { users: @users } %>
2017-03-20 10:57:50 -05:00
<%= link_to('New User', admin_new_user_path, { class: "" }) if policy(User).create? %>