Files
redmine_qbo/app/views/vehicles/index.html.erb
2016-04-22 08:15:45 -04:00

31 lines
912 B
Plaintext

<h1>Customer Vehicles</h1>
<br/>
<% Vehicle.all.each do |vehicle| %>
<div class="row">
<div class="span6 columns">
<fieldset>
<div style="width: 100%; display: table;">
<div style="display: table-row">
<div style="width: 600px; display: table-cell;">
<strong>
<%= vehicle.qbo_customer.name if vehicle.qbo_customer %>
</strong>
<br/>
<%= vehicle.to_s %>
</div>
<div style="display: table-cell;">
<%= button_to "Edit", edit_vehicle_path(vehicle), method: :get%>
<%= button_to "Delete", vehicle, method: :delete, data: {confirm: "You sure?"} %>
</div>
</div>
</div>
</fieldset>
</div>
</div>
<% end %>
<div class="actions">
<%= button_to "New", new_vehicle_path, method: :get %>
</div>