mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
32 lines
738 B
Plaintext
32 lines
738 B
Plaintext
<table>
|
|
<tbody>
|
|
|
|
<tr>
|
|
<th><%= t(:field_customer)%></th>
|
|
<td><%= link_to vehicle.customer.name, customer_path(vehicle.customer) %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th><%= t(:field_vehicle) %></th>
|
|
<td><%= vehicle.to_s %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th><%= t(:field_vin) %></th>
|
|
<td><%= @vin[0] if @vin %><b><%=@vin[1] if @vin%></b></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th><%= t(:field_notes) %></th>
|
|
<td><%= vehicle.notes %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<%= button_to t(:label_edit), edit_vehicle_path(vehicle), method: :get%>
|
|
<%= button_to t(:label_delete), vehicle, method: :delete, data: {confirm: t(:warn_ru_sure)} %>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|