<%= render partial: 'shared/header', locals: { links: [["車両管理", show_car_path(1)], ["データ編集", '#']]} %>

<%= @good.name.truncate(30) %> データ編集


<%= form_for(@good) do |f| %> <% if @good.errors.any? %>

<%= pluralize(@good.errors.count, "error") %> prohibited this customer from being saved:

<% end %>


車種

<%= f.text_field :memo1 %>

ナンバー

<%= f.text_field :memo2 %>








更新日

次回車検日

次回オイル交換

総走行距離

保険等級

詳細

<% @histories.each do |history| %> <%= f.fields_for :good_histories, history do |history_field| %>
<%= history_field.date_field :date %>
<%= history_field.date_field :date2 %>
<%= history_field.text_field :memo6 %>
<%= history_field.text_field :memo7 %>
<%= history_field.text_field :memo8 %>
<%= history_field.text_field :memo %>
<%= link_to '削除', history, method: :delete, data: { confirm: "本当に削除しますか?"}, class: "w8-button l-blue del" %>
<% end %> <% end %>
<%= f.submit "更新", class: "w8-button l-blue small"%>
<% end %>