Files
redmine_qbo/app/views/vehicles/show.html.erb
2016-04-21 20:44:18 -04:00

10 lines
285 B
Plaintext

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