% if @vehicles.present? %>
<% @vehicles.each do |vehicle| %>
<%= button_to "##{vehicle.id}, vehicle_path(vehicle) %>
<%= vehicle.to_s %>
<%= vehicle.customer %>
<%= vehicle.vin %>
<% end %>
<%= will_paginate @vehicles %>
<%= button_to "New Vehicle", new_vehicle_path, method: :get %>
<% else %>
There are no vehicles containing the term(s) <%= params[:search] %>.
<% end %>