mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
48 lines
813 B
Plaintext
48 lines
813 B
Plaintext
<table>
|
|
<tbody>
|
|
<tr>
|
|
<th>Customer</th>
|
|
<td><%= @customer %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Vehicle</th>
|
|
<td><%= @vehicle.to_s %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>VIN</th>
|
|
<td><%= @vehicle.vin %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Style</th>
|
|
<td><%= @style %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Drive</th>
|
|
<td><%= @drive %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Doors</th>
|
|
<td><%= @doors %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Notes</th>
|
|
<td><%= @vehicle.notes %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<%= button_to "Edit", edit_vehicle_path(@vehicle), method: :get%>
|
|
</td>
|
|
<td>
|
|
<%= button_to "Delete", @vehicle, method: :delete, data: {confirm: "You sure?"} %>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|