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

8 lines
224 B
Plaintext
Raw Normal View History

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