skill-assessment-app/app/views/admin/dashboard.html.erb

16 lines
426 B
Plaintext
Raw Normal View History

2016-08-18 18:22:57 -05:00
<%
content_for :section_title, "Admin Dashboard"
%>
2016-08-24 12:17:00 -05:00
<section>
<h1>Quizzes</h1>
<%= render partial: 'admin/quiz/table_list', locals: { quizzes: @quizzes } %>
<%= link_to('New Quiz', admin_new_quiz_path, { class: 'btn' }) %>
</section>
2016-08-18 18:22:57 -05:00
2016-08-24 12:17:00 -05:00
<section>
<h1>Users</h1>
<%= render partial: 'admin/user/table_list', locals: { users: @users } %>
<%= link_to('New User', admin_new_user_path, { class: 'btn' }) %>
</section>