rails-caf/app/views/companies/show.html.erb
2022-02-06 15:04:32 +00:00

11 lines
271 B
Plaintext

<p style="color: green"><%= notice %></p>
<%= render @company %>
<div>
<%= link_to "Edit this company", edit_company_path(@company) %> |
<%= link_to "Back to companies", companies_path %>
<%= button_to "Destroy this company", @company, method: :delete %>
</div>