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

11 lines
269 B
Plaintext

<p style="color: green"><%= notice %></p>
<%= render @student %>
<div>
<%= link_to "Edit this student", edit_student_path(@student) %> |
<%= link_to "Back to students", students_path %>
<%= button_to "Destroy this student", @student, method: :delete %>
</div>