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

11 lines
279 B
Plaintext
Raw Normal View History

2017-03-20 14:38:57 -05:00
<%
content_for :section_title, "Users"
content_for :title, "Users - Skills Assessment Admin"
%>
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? %>