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

10 lines
239 B
Plaintext
Raw Normal View History

2016-08-18 18:22:57 -05:00
<%
content_for :section_title, "Users"
%>
2016-08-19 16:02:18 -05:00
<main class="admin_tpl">
2016-08-18 18:22:57 -05:00
<h1>Users</h1>
<%= render partial: 'admin/user/table_list', locals: { users: @users } %>
<%= link_to('New User', admin_new_user_path, { class: 'btn' }) %>
</main>