物件名
日付
注釈
添付ファイル
<% @customer.others.each do |other| %>
<% end %>
<%= other.name %>
<%= other.date %>
<%= other.detail %>
<% other.contents.each do |c| %>
<% next if !c.upload_file %>
<%= link_to '編集', other_edit_path(@customer, other), class: "w8-button l-blue small2" %>
<%= link_to '削除', other, method: :delete, data: { confirm: "本当に削除しますか?"}, class: "w8-button l-blue small2" %>
<%= link_to c.upload_file_name, { action: 'download', id: c.id}, target: "_blank" %>
<% end %>
<%= link_to '新規', other_edit_path(@customer, @other_new), class: "w8-button l-blue small" %>