mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
13 lines
395 B
Plaintext
13 lines
395 B
Plaintext
<h1>Customer #<%= @customer.id %></h1>
|
|
<br/>
|
|
<h2>Details:</h2>
|
|
<%= render :partial => 'customers/details', locals: {customer: @customer} %>
|
|
<br/>
|
|
<h2>Vehicles:</h2>
|
|
<%= render :partial => 'vehicles/list' %>
|
|
<%= button_to "New Vehicle", new_customer_vehicle_path(@customer), method: :get %>
|
|
<br/>
|
|
<br/>
|
|
<h2>Issues:</h2>
|
|
<%= render :partial => 'issues/list_simple', locals: {issues: @issues} %>
|