school_app/app/views/students/index.html.erb

17 lines
478 B
Plaintext

<% content_for :title, "Students" %>
<div class="row justify-content-center">
<div class="col-lg-8">
<h1 class="mb-4">Students</h1>
<div id="students">
<% @students.each do |student| %>
<%= render student %>
<p>
<%= link_to "Show this student", student, class: "btn btn-outline-primary btn-sm" %>
</p>
<% end %>
</div>
<%= link_to "New student", new_student_path, class: "btn btn-primary mt-3" %>
</div>
</div>