mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
11 lines
450 B
Plaintext
11 lines
450 B
Plaintext
<h1>Customer Vehicles</h1>
|
|
<br/>
|
|
<%= form_for @vehicle do |f| %>
|
|
Customer: <%= f.select :qbo_customer_id, QboCustomer.all.pluck(:name, :id).sort, include_blank: true, :required => true%>
|
|
Year: <%= f.text_field :year, :required => true %><br />
|
|
Make: <%= f.text_field :make, :required => true %><br />
|
|
Model: <%= f.text_area :model, :required => true %><br />
|
|
Notes: <%= f.text_area :notes, :rows => 3%><br />
|
|
<%= f.submit %>
|
|
<% end %>
|