mirror of
https://github.com/rickbarrette/redmine_qbo_vehicles.git
synced 2026-08-18 21:20:43 -04:00
59 lines
1.7 KiB
ERB
59 lines
1.7 KiB
ERB
<div class="issue">
|
|
<div class="splitcontent">
|
|
<div class="splitcontentleft">
|
|
<h4><%= t(:label_details) %>:</h4>
|
|
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<th><%= t(:field_customer) %></th>
|
|
<td><%= vehicle.customer ? link_to(vehicle.customer.name, customer_path(vehicle.customer)) : t(:no_customer) %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th><%= t(:field_vehicle) %></th>
|
|
<td><%= vehicle.to_s %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th><%= t(:field_vin) %></th>
|
|
<td>
|
|
<div onclick="handleCopy(event)"><%= @vin[0] if @vin %><b><%= @vin[1] if @vin %></b></div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th><%= t(:label_trim) %></th>
|
|
<td><%= vehicle.doors %> <%= t(:label_door) if vehicle.doors? %> <%= vehicle.trim %></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="splitcontentright">
|
|
<h4><%= t(:field_notes) %>:</h4>
|
|
<div class="vehicle_notes attribute">
|
|
<div class="label"><%= t(:field_notes) %>:</div>
|
|
<% if vehicle.notes.present? %>
|
|
<div class="value wiki">
|
|
<%= textilizable(vehicle, :notes) %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<% mileage = vehicle.last_service_mileage %>
|
|
|
|
<% if mileage %>
|
|
<p>
|
|
<b><%= t(:label_last_service) %></b> <%= vehicle.last_service_date %>
|
|
at <%= mileage %> <%= t(:label_miles) %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<div style="float: right;">
|
|
<%= 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) } %>
|
|
</div> |