Customer <%= link_to vehicle.customer.name, customer_path(vehicle.customer) %>
Vehicle <%= vehicle.to_s %>
VIN <%= vehicle.vin %>
Style <%= vehicle.style %>
Drive <%= vehicle.drive %>
Doors <%= vehicle.doors %>
Notes <%= vehicle.notes %>
Issues <%= vehicle.issues.count %>
<%= button_to "New Issue", new_issue_path(:vehicle_id => vehicle.id, :customer_id => vehicle.customer.id), method: :get%> <%= button_to "Edit", edit_vehicle_path(vehicle), method: :get%> <%= button_to "Delete", vehicle, method: :delete, data: {confirm: "You sure?"} %>