Files
redmine_qbo/app/views/vehicles/show.html.erb
2016-04-22 09:31:03 -04:00

14 lines
291 B
Plaintext

<h1>Customer Vehicle</h1>
<br/>
<strong>
<%= @customer %>
</strong>
<br/>
<%= @vehicle.to_s %>
<br/>
<%= @vehicle.notes %>
<br/>
<%= button_to "Edit", edit_vehicle_path(@vehicle), method: :get%>
<br/>
<%= button_to "Delete", @vehicle, method: :delete, data: {confirm: "You sure?"} %>