16 lines
426 B
Plaintext
16 lines
426 B
Plaintext
<%
|
|
content_for :section_title, "Admin Dashboard"
|
|
%>
|
|
|
|
<section>
|
|
<h1>Quizzes</h1>
|
|
<%= render partial: 'admin/quiz/table_list', locals: { quizzes: @quizzes } %>
|
|
<%= link_to('New Quiz', admin_new_quiz_path, { class: 'btn' }) %>
|
|
</section>
|
|
|
|
<section>
|
|
<h1>Users</h1>
|
|
<%= render partial: 'admin/user/table_list', locals: { users: @users } %>
|
|
<%= link_to('New User', admin_new_user_path, { class: 'btn' }) %>
|
|
</section>
|