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

11 lines
269 B
Plaintext

<p style="color: green"><%= notice %></p>
<%= render @teacher %>
<div>
<%= link_to "Edit this teacher", edit_teacher_path(@teacher) %> |
<%= link_to "Back to teachers", teachers_path %>
<%= button_to "Destroy this teacher", @teacher, method: :delete %>
</div>